forked from TensorBlock/TensorBlock-Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
46 lines (46 loc) · 791 Bytes
/
electron-builder.json
File metadata and controls
46 lines (46 loc) · 791 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
{
"appId": "com.tensorblock.TensorBlockStudio",
"productName": "TensorBlock Studio",
"asar": true,
"asarUnpack": [
"dist/logos/**"
],
"directories": {
"app": "app",
"output": "release/"
},
"files": [
"**/*",
"!**/*.ts",
"!*.map",
"!package.json",
"!package-lock.json",
"dist/**/*"
],
"win": {
"icon": "app/dist/logos/",
"target": [
"portable"
]
},
"portable": {
"splashImage": "app/dist/logos/electron.bmp"
},
"mac": {
"icon": "app/dist/logos_mac",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
]
},
"linux": {
"icon": "app/dist/logos",
"category": "Utility",
"maintainer": "tensorblock.co",
"target": [
"AppImage"
]
}
}