-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
46 lines (45 loc) · 947 Bytes
/
electron-builder.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
{
"productName": "Team Data",
"appId": "com.netconnekt.teamdata",
"files": [
"app/dist/",
"app/app.html",
"app/splash.html",
"app/main.prod.js",
"app/main.prod.js.map",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "msi",
"arch": ["x64", "ia32"]
}
]
},
"msi": {
"oneClick": false
},
"nsis": {
"oneClick": false,
"perMachine": true,
"installerIcon": "resources/icon.ico",
"allowToChangeInstallationDirectory": false,
"license": "licence.txt",
"installerSidebar": "resources/installerSideBar.bmp",
"uninstallDisplayName": "Uninstall ${productName}"
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github"
},
"compression": "store",
"copyright": "Copyright © 2020 ${author}"
}