forked from dothq/browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
100 lines (100 loc) · 2.17 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
{
"appId": "org.dotinc.browser",
"productName": "Dot",
"asar": true,
"directories": {
"output": "dist",
"buildResources": "static"
},
"files": [
"build/**/*",
"package.json",
"filters",
"static/app-icons",
"static/pages",
"static/icon.icns",
"static/icon.png",
"static/icon.ico",
"locale",
"locale/**/*",
"static/icon-inverted.png",
"static/notification.mp3",
"static/tray-icon.png"
],
"publish": "github",
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerSidebar": "./app-icons/dot-banner.bmp",
"uninstallerSidebar": "./app-icons/dot-banner.bmp",
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"installerHeader": "./app-icons/dot-header.bmp",
"installerHeaderIcon": "icon.ico"
},
"nsisWeb": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerSidebar": "./app-icons/dot-banner.bmp",
"uninstallerSidebar": "./app-icons/dot-banner.bmp",
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"installerHeader": "./app-icons/dot-header.bmp",
"installerHeaderIcon": "icon.ico"
},
"linux": {
"category": "Network",
"target": [
{
"target": "AppImage",
"arch": ["ia32", "x64"]
}
]
},
"win": {
"target": ["zip", "nsis", "nsis-web"]
},
"mac": {
"category": "public.app-category.navigation"
},
"fileAssociations": [
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "htm"
},
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "html"
},
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "shtml"
},
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "webp"
},
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "xht"
},
{
"name": "Document",
"description": "Dot",
"role": "Viewer",
"ext": "xhtml"
}
]
}