-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
98 lines (98 loc) · 2.72 KB
/
Copy pathelectron-builder.json
File metadata and controls
98 lines (98 loc) · 2.72 KB
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
{
"appId": "fr.FrostBreker.Aero",
"productName": "Aero",
"copyright": "Copyright (c) 2023 FrostBreker",
"compression": "maximum",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
"build/**/*",
"node_modules",
"package.json",
"ipc/**/*",
"classes/*",
"icons/*"
],
"directories": {
"buildResources": "public"
},
"extraResources": [
"./public/icons/*",
"./public/icon_256x256.ico",
"./public/icon.ico",
"./public/icon.png",
"./public/favicon.ico"
],
"win": {
"publisherName": "FrostBreker",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "public/icon_256x256.ico"
},
"linux": {
"maintainer": "FrostBreker",
"vendor": "FrostBreker",
"synopsis": "AeroBrowser",
"description": "Aero is a simple and lightweight web browser for Windows, Mac and Linux. It is built with Electron, React and Redux.",
"category": "Network",
"icon": "public/icons",
"mimeTypes": [
"text/html"
],
"executableName": "aero",
"desktop": {
"Name": "Aero",
"Comment": "AeroBrowser",
"Icon": "fr.frostbreker.aero",
"Keywords":["browser", "web", "internet"],
"StartupNotify": true,
"Terminal": false
},
"target": [
{
"target": "deb",
"arch": [
"x64",
"armv7l"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "public/icon_256x256.ico",
"uninstallerIcon": "public/icon_256x256.ico"
},
"portable": {
"artifactName": "Aero_${version}_${os}.${ext}"
},
"appx": {
"applicationId": "fr.frostbreker.aero",
"backgroundColor": "#000000",
"identityName": "frostbreker.aero",
"publisherDisplayName": "FrostBreker",
"artifactName": "Aero_${version}_${os}.${ext}"
},
"deb": {
"category": "Network",
"mimeTypes": [
"text/html"
],
"depends": ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3"],
"packageCategory": "network",
"packageName": "aero",
"vendor": "FrostBreker",
"maintainer": "FrostBreker"
},
"forceCodeSigning": false
}