-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathelectron-builder.json
More file actions
43 lines (43 loc) · 989 Bytes
/
electron-builder.json
File metadata and controls
43 lines (43 loc) · 989 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
{
"productName": "超级转码",
"appId": "sweetwisdom",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": ["!node_modules", "dist", "package.json"],
"mac": {
"artifactName": "${productName}_${version}.${ext}",
"target": ["dmg"]
},
"win": {
"icon": "./public/super.ico",
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
],
"artifactName": "${productName}_${version}.${ext}"
},
"extraResources": [
{
"from": "./public/tool.exe",
"to": "./public/tool.exe"
},
{
"from": "./public/node_modules",
"to": "./node_modules"
}
],
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"installerIcon": "./public/super.ico",
"uninstallerIcon": "./public/super.ico",
"installerHeaderIcon": "./public/super.ico",
"shortcutName": "超级转码"
}
}