-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "node-killer",
"version": "0.1.0",
"description": "⚡️ Node Killer — macOS menubar app to monitor and terminate Node.js processes (aka your dev servers).",
"main": "src/main.js",
"author": "Adolfo Flores (https://github.com/adolfoflores)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adolfoflores/node-killer.git"
},
"bugs": {
"url": "https://github.com/adolfoflores/node-killer/issues"
},
"homepage": "https://github.com/adolfoflores/node-killer#readme",
"dependencies": {
"electron-store": "^8.1.0"
},
"scripts": {
"dev": "electron .",
"build": "electron-builder -m"
},
"devDependencies": {
"electron": "^38.1.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.nodekiller.app",
"productName": "Node-Killer",
"files": [
"src/**/*",
"package.json",
"LICENSE",
"README.md",
"assets/icons/node-killer.icns"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icons/node-killer.icns",
"target": [
"dmg",
"zip"
]
}
}
}