-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathelectron-builder.json
43 lines (43 loc) · 1.29 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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "waypaper.engine",
"asar": false,
"npmRebuild": true,
"directories": {
"output": "release"
},
"files": ["dist-electron", "dist"],
"extraFiles": [
{
"from": "build/icons/",
"to": "resources/icons/",
"filter": ["**/*"]
},
{
"from": "daemon",
"to": "resources/daemon"
},
{
"from": "node_modules/better-sqlite3/build/Release/better_sqlite3.node",
"to": "resources/better_sqlite3.node"
},
{
"from": "database/migrations",
"to": "resources/migrations"
}
],
"linux": {
"artifactName": "${productName}.${ext}",
"category": "Utility",
"target": ["dir"],
"executableName": "waypaper-engine-bin",
"description": "A graphical frontend for setting wallpapers and playlists, using swww under the hood!",
"desktop": {
"Name": "Waypaper Engine",
"Comment": "Waypaper Engine",
"Terminal": "false",
"Type": "Application",
"Icon": "/build/icons/512x512.png"
}
}
}