@torkbot/sandbox-linux-x64-gnu 0.1.0-pre.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @torkbot/sandbox-linux-x64-gnu
2
+
3
+ Bootstrap placeholder for npm trusted publishing setup. This package does not contain a platform artifact.
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@torkbot/sandbox-linux-x64-gnu",
3
+ "version": "0.1.0-pre.0",
4
+ "private": false,
5
+ "description": "Bootstrap placeholder for npm trusted publishing setup.",
6
+ "license": "MIT OR Apache-2.0",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/torkbot/sandbox"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "tag": "trusted-publishing-bootstrap"
14
+ },
15
+ "os": [
16
+ "linux"
17
+ ],
18
+ "cpu": [
19
+ "x64"
20
+ ],
21
+ "libc": [
22
+ "glibc"
23
+ ],
24
+ "files": [
25
+ "README.md"
26
+ ]
27
+ }