-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathelectron-builder.json
61 lines (61 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"appId": "com.signerlabs.klee",
"productName": "Klee",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron",
"dist"
],
"icon": "./build/icon.png",
"mac": {
"artifactName": "${productName}_${version}.${ext}",
"target": [
"zip",
"dmg"
],
"icon": "./build/icons/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"CFBundleDisplayName": "Klee",
"NSAppleEventsUsageDescription": "Requires access to the application support catalog to store data",
"NSDesktopFolderUsageDescription": "Requires access to the file system to store application data"
},
"extraResources": [
"./additionalResources/tiktoken_encode"
]
},
"dmg": {
"sign": false
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}_${version}.${ext}",
"icon": "./build/icons/icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"afterSign": "build/notarize.js",
"publish": {
"provider": "generic",
"url": "https://dvnr1hi9fanyr.cloudfront.net/client-release/${platform}-${arch}/",
"updaterCacheDirName": "klee-electron-updater"
}
}