-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
80 lines (80 loc) · 1.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"asar": true,
"productName": "khiops covisualization",
"appId": "com.khiops.covisualization",
"afterSign": "./scripts/notarize.js",
"directories": {
"output": "release/"
},
"publish": [
{
"provider": "github",
"owner": "KhiopsML",
"repo": "kc-electron"
}
],
"files": [
"**/*",
"!**/*.ts",
"!*.map",
"!package.json",
"!package-lock.json",
{
"from": "../dist",
"filter": ["**/*"]
}
],
"nsis": {
"runAfterFinish": false,
"perMachine": false,
"oneClick": false,
"installerLanguages": ["en_US"]
},
"win": {
"icon": "dist/khiops-covisualization/icons/256x256.png",
"target": ["nsis"],
"fileAssociations": [
{
"ext": "khcj",
"name": "khcj File"
}
]
},
"mac": {
"icon": "dist/assets/icons",
"entitlements": "./build/entitlements.mac.plist",
"entitlementsInherit": "./build/entitlements.mac.plist",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"fileAssociations": [
{
"ext": "khcj",
"name": "khcj File",
"role": "Editor"
}
]
},
"linux": {
"icon": "dist/khiops-covisualization/icons/",
"target": ["deb", "AppImage", "zip", "rpm"],
"category": "Utility",
"fileAssociations": [
{
"ext": "khcj",
"name": "khcj File",
"mimeType": "application/khcj",
"role": "Editor"
}
]
}
}