This repository has been archived by the owner on May 3, 2023. It is now read-only.
forked from skyebrowser/skye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
103 lines (103 loc) · 2 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
{
"appId": "com.innatical.skye",
"productName": "Skye",
"nsis": {
"include": "static/installer.nsh"
},
"generateUpdatesFilesForAllChannels": true,
"asar": true,
"directories": {
"output": "dist",
"buildResources": "static/icons"
},
"files": ["build/**/*", "package.json", "static/**/*"],
"publish": [
"github",
{
"provider": "snapStore",
"repo": "skye",
"channels": ["stable"]
}
],
"deb": {
"fpm": ["static/skye.metainfo.xml=/usr/share/metainfo/skye.metainfo.xml"]
},
"rpm": {
"fpm": ["static/skye.metainfo.xml=/usr/share/metainfo/skye.metainfo.xml"]
},
"pacman": {
"fpm": ["static/skye.metainfo.xml=/usr/share/metainfo/skye.metainfo.xml"]
},
"linux": {
"category": "Network",
"executableName": "skye",
"desktop": {
"Comment": "Browse the Web",
"GenericName": "Internet",
"StartupNotify": false,
"Categories": "Internet"
},
"target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{
"target": "deb",
"arch": ["x64", "arm64"]
},
{
"target": "rpm",
"arch": ["x64", "arm64"]
},
{
"target": "pacman",
"arch": ["x64", "arm64"]
},
{
"target": "tar.gz",
"arch": ["x64", "arm64"]
},
{
"target": "snap",
"arch": ["x64", "arm64"]
}
]
},
"win": {
"target": [
{
"target": "nsis-web",
"arch": ["x64", "ia32"]
},
{
"target": "zip",
"arch": ["x64", "ia32"]
}
]
},
"mac": {
"category": "public.app-category.navigation",
"target": [
{
"target": "default",
"arch": "universal"
}
]
},
"fileAssociations": [
{
"name": "Document",
"description": "Skye",
"role": "Viewer",
"ext": "html"
}
],
"protocols": [
{
"name": "Skye",
"role": "Viewer",
"schemes": ["http", "https"]
}
]
}