-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.09 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": "koncrete",
"description": "Koncrete is cloud-hosted continuous delivery for Kubernetes, powered by ArgoCD.",
"version": "0.1.0-beta.3",
"private": true,
"main": "build/index.js",
"author": {
"name": "Koncrete",
"email": "[email protected]",
"url": "https://koncrete.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/kalmhq/koncrete-app.git"
},
"dependencies": {
"@types/node": "^16.4.10",
"@types/throttle-debounce": "^2.1.0",
"debug": "^4.3.2",
"electron-is-dev": "^2.0.0",
"electron-updater": "^4.3.9",
"fix-path": "^3.0.0",
"follow-redirects": "^1.14.1",
"reconnect-core": "^1.3.0",
"throttle-debounce": "^3.0.1",
"tmp": "^0.2.1",
"typescript": "^3.8.3",
"wait-on": "^6.0.0",
"yaml": "^1.10.2"
},
"build": {
"afterSign": "electron-builder-notarize",
"appId": "dev.koncrete.app",
"productName": "Koncrete",
"copyright": "Copyright © 2021 ${author}",
"extends": null,
"mac": {
"hardenedRuntime": true,
"category": "public.app-category.utilities"
},
"files": ["build/*"],
"publish": {
"provider": "github"
},
"win": {
"publisherName": "KALM INC"
},
"linux": {
"category": "Network",
"artifactName": "${productName}-${version}.${arch}.${ext}",
"target": ["deb", "rpm", "AppImage"]
}
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "concurrently --kill-others \"tsc -p . -w\" \"tsc -p . && electron .\"",
"build": "run-script-os",
"build:default": "tsc -p .",
"pack": "electron-builder --linux --mac --win --arm64 --x64",
"pack-linux": "electron-builder --linux --arm64 --x64",
"pack-windows": "electron-builder --win --arm64 --x64"
},
"devDependencies": {
"@types/reconnect-core": "^1.3.2",
"@types/tmp": "^0.2.1",
"@types/wait-on": "^5.3.1",
"concurrently": "^6.2.0",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"electron-builder-notarize": "^1.2.0",
"electron-reload": "^1.5.0",
"run-script-os": "^1.1.6"
}
}