-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "k8s-tunneler",
"productName": "k8s tunneler",
"version": "0.1.0",
"description": "Menu bar / tray app to manage kubectl port-forward connections (macOS and Linux)",
"main": "src/main.js",
"author": "Thomas Karstens",
"license": "MIT",
"scripts": {
"start": "electron .",
"dist": "electron-builder --mac",
"dist:linux": "electron-builder --linux"
},
"dependencies": {
"electron-store": "^8.2.0",
"menubar": "^9.5.2"
},
"devDependencies": {
"electron": "^34.5.8",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "dev.thomas.k8stunneler",
"productName": "k8s tunneler",
"files": [
"src/**/*",
"assets/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.png",
"target": [
"dmg"
],
"extendInfo": {
"LSUIElement": true
}
},
"linux": {
"category": "Development",
"icon": "build/icon.png",
"target": [
"AppImage"
]
}
}
}