-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·65 lines (65 loc) · 2.1 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
{
"name": "klinker-apps",
"version": "v3.3.3",
"description": "A dashboard application for Klinker Apps",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder build",
"postinstall": "electron-builder install-app-deps",
"build-mac": "electron-builder build --mac",
"build-windows": "electron-builder build --windows nsis --x64 --ia32",
"build-linux": "electron-builder build --linux rpm deb AppImage",
"publish-mac": "electron-builder build --mac --publish always",
"publish-linux": "electron-builder build --linux rpm deb AppImage --publish always",
"publish-windows": "electron-builder build --windows nsis --x64 --ia32 --publish always",
"publish-win-mac": "electron-builder build --mac --windows nsis --x64 --ia32 --publish always"
},
"repository": "https://github.com/klinker24/klinkerapps-dashboard",
"keywords": [
"klinker",
"apps",
"dashboard"
],
"author": {
"name": "Luke Klinker",
"email": "luke@klinkerapps.com",
"url": "luke.klinker.xyz"
},
"license": "Apache-2.0",
"build": {
"appId": "xyz.klinker.dashboard",
"productName": "Klinker Apps Dashboard",
"artifactName": "klinker-apps-${version}-${arch}.${ext}",
"afterSign": "build/notarize.js",
"mac": {
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"sign": false
},
"publish": [
{
"provider": "github",
"owner": "klinker-apps",
"repo": "support-dashboard-desktop",
"releaseType": "draft"
}
]
},
"devDependencies": {
"@types/node": "^12.6.8",
"dotenv": "^8.1.0",
"electron": "8.0.3",
"electron-builder": "22.3.2",
"electron-notarize": "^0.1.1"
},
"dependencies": {
"electron-window-state": "5.0.3"
}
}