-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "inspector",
"version": "0.2.0",
"author": {
"name": "FROM THE EARTH"
},
"homepage": "https://github.com/FROM-THE-EARTH",
"license": "MIT",
"main": "root/main.js",
"scripts": {
"start": "electron .",
"rebuild": "electron-rebuild -f -w serialport",
"pac:win": "npx electron-builder --win --x64",
"pac:mac": "npx electron-builder --mac --x64"
},
"dependencies": {
"electron-store": "^6.0.1",
"jquery": "^3.5.1",
"serialport": "^9.0.2"
},
"devDependencies": {
"electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.4",
"electron": "11.0.3"
},
"build": {
"productName": "inspector",
"directories": {
"output": "./release"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"mac": {
"icon": "./icon/icon.icns",
"target": "dmg",
"artifactName": "inspector-installer-mac.${ext}"
},
"win": {
"icon": "./icon/icon.ico",
"target": "nsis",
"artifactName": "inspector-installer-win.${ext}"
}
}
}