-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathelectron-builder.json5
70 lines (70 loc) · 1.53 KB
/
electron-builder.json5
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
{
appId: 'org.reorproject.reor',
asar: true,
directories: {
output: 'release/${version}',
},
files: ['dist-electron/**/*', 'dist/**/*'],
extraMetadata: {
"main": "dist-electron/main/index.js",
},
mac: {
asarUnpack: ['**/*.{node,dll,metal,exp,lib}'],
artifactName: '${productName}_${version}.${ext}',
target: ['dmg', 'zip'],
extraResources: [
{
from: './binaries/darwin/',
to: 'binaries',
filter: ['**/*'],
},
],
},
win: {
artifactName: '${productName}_${version}.${ext}',
asarUnpack: ['**/*.{node,dll,metal,exp,lib}'],
target: [
{
target: 'nsis',
arch: ['x64'],
},
],
extraResources: [
{
from: './binaries/win32/',
to: 'binaries',
filter: ['**/*'],
},
],
},
nsis: {
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
deleteAppDataOnUninstall: false,
},
linux: {
artifactName: '${productName}_${version}.${ext}',
asarUnpack: ['**/node_modules/sharp/**'],
target: [
{
target: 'AppImage',
},
],
category: 'Utility',
synopsis: 'Short description of your app',
description: 'Full description of your app',
extraResources: [
{
from: './binaries/linux/',
to: 'binaries',
filter: ['**/*'],
},
],
},
publish: {
provider: 'generic',
channel: 'latest',
url: 'https://github.com/electron-vite/electron-vite-react/releases/download/v0.9.9/',
},
}