We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a55648 commit 7840b39Copy full SHA for 7840b39
.gitignore
@@ -1,2 +1,3 @@
1
-node_modules/*
+node_modules/
2
+pkg/
3
*.js
package.json
@@ -3,9 +3,19 @@
"version": "1.0.0",
4
"description": "",
5
"main": "src/index.js",
6
+ "bin": "src/index.js",
7
+ "pkg":{
8
+ "assets":[
9
+ "src/*.js",
10
+ "web/*.html",
11
+ "web/*.css",
12
+ "web/*.js"
13
+ ]
14
+ },
15
"scripts": {
16
"test": "echo \"Error: no test specified\" && exit 1",
- "start": "node src/index.js"
17
+ "start": "node src/index.js",
18
+ "pack": "pkg . --out-path \"pkg\""
19
},
20
"keywords": [],
21
"author": "",
0 commit comments