-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
26 lines (26 loc) · 931 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"devDependencies": {
"electron-builder": "next",
"electron-prebuilt": "1.1.0",
"rimraf": "^2.5.2",
"node-gyp": "^3.3.1",
"node-pre-gyp": "^0.6.28"
},
"scripts": {
"install": "install-app-deps",
"compile": "node-pre-gyp install --fallback-to-build --runtime=electron --target=1.1.0 --target_arch=x64 --directory=app/node_modules/serialport/ --update-binary --dist-url=https://atom.io/download/atom-shell",
"postinstall": "npm run compile",
"start": "electron ./app",
"clean": "rimraf -f dist",
"cleanmodules": "rimraf -f app/node_modules && rimraf -f node_modules",
"cleanall": "npm run clean && npm run cleanmodules",
"dist": "npm install && npm run compile && build"
},
"build": {
"win": {
"iconUrl": "https://media.githubusercontent.com/media/develar/onshape-desktop-shell/master/build/icon.ico",
"title": "Snaptron",
"msi": false
}
}
}