@covas-labs/electron-vr 0.0.0-bootstrap.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 (3) hide show
  1. package/README.md +3 -0
  2. package/index.js +4 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @covas-labs/electron-vr
2
+
3
+ Bootstrap placeholder package for npm trusted publishing setup.
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ module.exports = {
2
+ bootstrap: true,
3
+ message: "Bootstrap placeholder package. Configure trusted publishing, then publish a real tagged release."
4
+ };
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@covas-labs/electron-vr",
3
+ "version": "0.0.0-bootstrap.0",
4
+ "description": "Bootstrap placeholder package for npm trusted publishing setup.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/COVAS-Labs/electron-vr.git"
8
+ },
9
+ "main": "index.js",
10
+ "exports": {
11
+ ".": "./index.js"
12
+ },
13
+ "files": [
14
+ "index.js",
15
+ "README.md"
16
+ ],
17
+ "optionalDependencies": {
18
+ "@covas-labs/electron-vr-prebuilt-linux-x64": "0.0.0-bootstrap.0",
19
+ "@covas-labs/electron-vr-prebuilt-win32-x64": "0.0.0-bootstrap.0"
20
+ },
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org",
23
+ "access": "public"
24
+ }
25
+ }