-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
96 lines (96 loc) · 2.56 KB
/
electron-builder.json
File metadata and controls
96 lines (96 loc) · 2.56 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
{
"appId": "com.luie.app",
"productName": "Luie",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"out/**/*",
"package.json",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,AUTHORS,LICENSE,LICENSE.*,LICENCE,LICENCE.*,docs,doc,example,examples,test,tests,__tests__,coverage,.github}/**",
"!**/node_modules/**/*.map",
"!**/node_modules/**/*.d.ts",
"!**/node_modules/**/*.d.mts",
"!**/node_modules/better-sqlite3/deps/**"
],
"electronLanguages": ["en", "ko", "ja"],
"extraResources": [
{
"from": "node_modules/bindings",
"to": "node_modules/bindings",
"filter": ["**/*"]
},
{
"from": "node_modules/file-uri-to-path",
"to": "node_modules/file-uri-to-path",
"filter": ["**/*"]
},
{
"from": "build/icons/icon.png",
"to": "icon.png"
},
{
"from": "drizzle",
"to": "drizzle",
"filter": ["**/*"]
}
],
"publish": [
{
"provider": "github",
"owner": "Loop0loop",
"repo": "Luie",
"releaseType": "release"
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icons/icon.icns",
"artifactName": "Luie-${version}-${arch}.${ext}",
"target": ["dmg", "zip"],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"afterSign": "scripts/notarize.mjs",
"dmg": {
"artifactName": "Luie-${version}-${arch}.${ext}"
},
"pkg": {
"artifactName": "Luie-${version}-${arch}.${ext}",
"installLocation": "/Applications"
},
"win": {
"icon": "build/icons/icon.ico",
"executableName": "Luie",
"target": ["nsis-web"]
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": false,
"allowElevation": true,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"shortcutName": "Luie",
"uninstallDisplayName": "Luie",
"displayLanguageSelector": false,
"installerIcon": "build/icons/icon.ico",
"uninstallerIcon": "build/icons/icon.ico",
"installerHeaderIcon": "build/icons/icon.ico",
"warningsAsErrors": false
},
"nsisWeb": {
"artifactName": "Luie-Web-Setup-${version}-${arch}.${ext}"
},
"portable": {
"artifactName": "Luie-Portable-${version}-${arch}.${ext}"
},
"linux": {
"icon": "build/icons/icon.png",
"artifactName": "Luie-${version}-${arch}.${ext}",
"target": ["AppImage", "deb"]
}
}