-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathelectron-builder.json
More file actions
41 lines (41 loc) · 936 Bytes
/
electron-builder.json
File metadata and controls
41 lines (41 loc) · 936 Bytes
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
{
"appId": "com.rechain.aiplatform",
"productName": "AIPlatform",
"version": "1.0.0",
"directories": {
"output": "builds/desktop"
},
"files": [
"dist/**/*",
"platforms/macos/**/*",
"platforms/windows/**/*",
"platforms/linux/**/*"
],
"mac": {
"target": "dmg",
"category": "public.app-category.productivity",
"icon": "platforms/macos/icon.icns",
"hardenedRuntime": true
},
"win": {
"target": "nsis",
"icon": "platforms/windows/icon.ico",
"certificateFile": "certs/cert.p12",
"certificatePassword": "${env.CERT_PASSWORD}"
},
"linux": {
"target": "AppImage",
"icon": "platforms/linux/icon.png",
"category": "Development"
},
"publish": {
"provider": "github",
"owner": "REChain-Network-Solutions",
"repo": "AIPlatform"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
}