-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 918 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 918 Bytes
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
{
"name": "print_web",
"version": "1.0.0",
"description": "print_web",
"main": "index.js",
"build": {
"productName": "print_web",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true
},
"win": {
"icon": "img/256.png",
"target": [
"nsis",
"zip"
],
"asarUnpack": [
"./jar${/*}",
"./jre${/*}"
]
}
},
"scripts": {
"start": "electron .",
"package": "electron-builder --win --x64"
},
"author": "YunZezzZ",
"devDependencies": {
"electron": "^1.8.8",
"electron-builder": "^21.1.5",
"electron-packager": "^14.0.3",
"electron-squirrel-startup": "^1.0.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"minimal-request-promise": "^1.5.0",
"request": "^2.88.0",
"tree-kill": "^1.2.1"
}
}