-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathelectron-builder.json
More file actions
50 lines (50 loc) · 940 Bytes
/
electron-builder.json
File metadata and controls
50 lines (50 loc) · 940 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
42
43
44
45
46
47
48
49
50
{
"productName": "SeekingData",
"appId": "com.seekingdata.app",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"dist-electron",
"dist",
"!backend",
"!**/__pycache__"
],
"extraResources": [
{
"from": "backend",
"to": "backend",
"filter": ["**/*", "!.venv/**/*"]
},
{
"from": "resources/prebuilt",
"to": "prebuilt",
"filter": [
"**/*",
"!cache/**/*",
"!**/__pycache__",
"!**/*.pyc"
]
}
],
"mac": {
"icon": "build/icon.icns",
"target": ["dmg", "zip"],
"category": "public.app-category.developer-tools"
},
"win": {
"icon": "build/icon.ico",
"target": ["nsis"]
},
"linux": {
"icon": "build/icon.png",
"target": ["AppImage"],
"category": "Development"
},
"publish": {
"provider": "github",
"owner": "seekingdata",
"repo": "seekingdata"
}
}