-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathelectron-builder.json
118 lines (118 loc) · 2.19 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"appId": "net.fascode.flast",
"productName": "Flast",
"electronVersion": "23.2.1",
"generateUpdatesFilesForAllChannels": true,
"asar": true,
"directories": {
"output": "dist",
"buildResources": "static/icons/app"
},
"files": [
"package.json",
"build/**/*",
"static/**/*"
],
"publish": "github",
"win": {
"icon": "static/icons/app/icon.ico",
"target": [
{
"target": "nsis-web",
"arch": [
"x64",
"ia32"
]
},
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"include": "static/installer.nsh",
"installerIcon": "static/icons/app/icon.ico",
"uninstallerIcon": "static/icons/app/icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"target": "default"
},
"linux": {
"category": "Network",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
},
{
"target": "rpm",
"arch": [
"x64"
]
}
]
},
"fileAssociations": [
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "htm"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "html"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "shtml"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "xht"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "xhtml"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "webp"
},
{
"name": "Document",
"description": "Flast HTML Document",
"role": "Viewer",
"ext": "svg"
},
{
"name": "Document",
"description": "Flast PDF Document",
"role": "Viewer",
"ext": "pdf"
}
]
}