-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
83 lines (83 loc) · 1.72 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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.arocodes.arocrypt",
"productName": "AroCrypt",
"copyright": "Copyright 2025 AroCodes",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron/**/*",
"dist/**/*",
"icons/**/*",
"public/**/*",
"**/*",
"!**/*.ts",
"!*.code-workspace",
"./scripts/installer.manifest"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-Setup-${version}.${ext}",
"icon": "icons/icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "icons/win/icon.ico",
"installerHeaderIcon": "icons/win/icon.ico",
"include": "scripts/config.nsi"
},
"extraResources": [
{
"from": "public/icons",
"to": "icons",
"filter": [
"**/*"
]
},
{
"from": "public/logo",
"to": "logo",
"filter": [
"**/*"
]
},
{
"from": "cert/arocrypt.crt",
"to": "cert/"
},
{
"from": "cert/arocrypt.pfx",
"to": "cert/"
},
{
"from": "scripts/config.nsi",
"to": "scripts/"
},
{
"from": "scripts/installer.manifest",
"to": "scripts/"
}
],
"publish": [
{
"provider": "github",
"owner": "OfficialAroCodes",
"repo": "arocrypt"
}
]
}