-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.93 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "unzip",
"version": "1.1.0",
"description": "【unzip】desktop",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=development electron .",
"pack-win": "electron-packager . NJRUnzipTool --platform=win32 --arch=x64 --out=./out --app-version=1.0.0 --overwrite",
"pack-mac": "electron-packager . NJRUnzipTool --platform=darwin --arch=x64 --out=./out --app-version=1.0.0 --overwrite",
"build": "cross-env NODE_ENV=production electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "www.xxx.com",
"productName": "unzip",
"copyright": "",
"directories": {
"output": "dist"
},
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:9005/"
}
],
"files": [
"node_modules/",
"public/",
"app.js",
"main.js",
"index.html",
"package.json"
],
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "public/labi.icns"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "public/labi.ico"
},
"nsis": {
"oneClick": false,
"language": "2052",
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "./public/labi.ico",
"uninstallerIcon": "./public/labi.ico",
"installerHeaderIcon": "./public/labi.ico"
}
},
"keywords": [],
"author": "zhuzhengwang",
"license": "MIT",
"dependencies": {
"7zip-bin": "^5.1.1",
"archiver": "^5.3.0",
"archiver-zip-encrypted": "^1.0.10",
"electron-updater": "^4.6.1",
"express": "^4.17.1",
"macaddress": "^0.5.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"electron": "^16.0.4",
"electron-builder": "^22.14.5",
"electron-installer-dmg": "^3.0.0",
"electron-packager": "^15.4.0"
}
}