-
Notifications
You must be signed in to change notification settings - Fork 91
/
electron-builder.json
42 lines (42 loc) · 1.02 KB
/
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
{
"publish": {
"owner": "thenewboston-developers",
"provider": "github",
"repo": "Account-Manager"
},
"productName": "TNB Account Manager",
"appId": "com.thenewboston.account.manager.app",
"directories": {
"buildResources": "assets",
"output": "release"
},
"asar": true,
"files": ["bundle/**/*", "!build", "!node_modules", "package.json", "app-information"],
"mac": {
"target": ["dmg", "zip"],
"artifactName": "${productName}-${version}-${os}.${ext}",
"icon": "./assets/mac/icons/app_icon.icns"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "zip"
}
],
"artifactName": "${productName}-${version}-${os}.${ext}"
},
"linux": {
"target": ["AppImage"],
"artifactName": "${productName}-${version}-${os}.${ext}"
},
"dmg": {
"title": "${productName}-${version}",
"icon": "./assets/mac/icons/dmg_icon.icns"
},
"afterSign": "./assets/scripts/notarize.js",
"extends": null
}