-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
46 lines (46 loc) · 1015 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
{
"appId": "com.meta.veetmanager",
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"directories": {
"buildResources": "buildResources",
"output": "dist"
},
"extraResources": [
"README.md",
"ATTRIBUTION.md",
"firmware/*.bin",
"firmware/manifest.json",
"documentation/*"
],
"electronDownload": {
"cache": ".buildCache"
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"packElevateHelper": false,
"uninstallDisplayName": "${productName}"
},
"mac": {
"category": "public.app-category.utilities",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"identity": null,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"singleArchFiles": "*",
"target": {
"target": "dmg",
"arch": "universal"
}
},
"dmg": {
"sign": false
}
}