We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531ba74 commit 96f3586Copy full SHA for 96f3586
package.json
@@ -10,6 +10,10 @@
10
"test": "tests"
11
},
12
"scripts": {
13
+ "build": "npm run build:linux && npm run build:osx && npm run build:windows",
14
+ "build:linux": "pkg -t node14-linux -o dist/portal bin/portal.js",
15
+ "build:osx": "pkg -t node14-osx -o dist/portal-osx bin/portal.js",
16
+ "build:windows": "pkg -t node14-win -o dist/portal.exe bin/portal.js",
17
"test": "echo \"Error: no test specified\" && exit 1"
18
19
"repository": {
@@ -42,5 +46,8 @@
42
46
"random-access-memory": "^6.2.1",
43
47
"random-port-promise": "^1.0.1",
44
48
"sodium-universal": "^4.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "pkg": "^5.8.1"
45
52
}
53
0 commit comments