-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.92 KB
/
package.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
{
"name": "pepegaboard",
"productName": "PepegaBoard",
"version": "1.2.0",
"description": "An Open Source Pepega Board",
"main": "main.js",
"repository": "https://github.com/d43m0nhLInt3r/PepegaBoard",
"author": {
"name": "d43m0nhLInt3r",
"email": "[email protected]"
},
"license": "GPL-3.0",
"scripts": {
"start": "electron .",
"build-deb": "electron-builder -l deb --x64 ",
"build-win": "electron-builder -w nsis --x64 ",
"build-mac": "electron-builder -m --x64 ",
"build-arch-pac": "electron-builder -l pacman --x64 ",
"build-linux-appimage": "electron-builder -l appimage --x64 ",
"build-all": "yarn run build-deb && yarn run build-win && yarn run build-mac && yarn run build-arch-pac && yarn run build-linux-appimage"
},
"devDependencies": {
"electron": "^9.3.1",
"electron-builder": "^22.8.0"
},
"dependencies": {
"bootstrap": "^4.5.0",
"jquery": "^3.5.1"
},
"release": "build",
"build": {
"appId": "com.pepegaboard.app",
"asar": true,
"publish": [
{
"provider": "github",
"owner": "d43m0nhLInt3r",
"repo": "PepegaBoard"
}
],
"mac": {
"artifactName": "${name}-mac-${version}.${ext}",
"category": "public.app-category.utilities",
"darkModeSupport": true,
"icon": "build/icons/mac/icon.icns",
"target": [
"zip"
]
},
"win": {
"artifactName": "${name}-win-${version}.${ext}",
"publisherName": "d43m0nhLInt3r",
"icon": "build/icons/win/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": false
},
"linux": {
"artifactName": "${name}-linux-${version}.${ext}",
"category": "Utility",
"target": [
"deb",
"pac"
],
"icon": "build/icons/png"
}
}
}