-
-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathelectron-builder.json5
More file actions
36 lines (36 loc) · 822 Bytes
/
electron-builder.json5
File metadata and controls
36 lines (36 loc) · 822 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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.trafexia.app",
"productName": "Trafexia",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"target": ["dmg", "zip"],
"icon": "resources/icons/icon.png",
"category": "public.app-category.developer-tools"
},
"win": {
"target": ["nsis", "portable"],
"icon": "resources/icons/icon.png"
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "resources/icons",
"category": "Development"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"extraResources": [
{
"from": "resources",
"to": "resources"
}
]
}