-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.18 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.18 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fkill-cli",
"version": "9.0.0",
"description": "Fabulously kill processes. Cross-platform.",
"license": "MIT",
"repository": "sindresorhus/fkill-cli",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"fkill": "./cli.js"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"interactive.js"
],
"keywords": [
"cli-app",
"cli",
"fkill",
"kill",
"killing",
"killall",
"taskkill",
"sigkill",
"sigterm",
"force",
"exit",
"zap",
"die",
"ps",
"proc"
],
"dependencies": {
"@inquirer/search": "^3.2.1",
"chalk": "^5.6.2",
"cli-truncate": "^5.1.1",
"esc-exit": "^3.0.1",
"fkill": "^10.0.0",
"fuzzy-search": "^3.2.1",
"inquirer": "^12.11.0",
"meow": "^14.0.0",
"num-sort": "^4.0.0",
"pid-port": "^2.0.0",
"ps-list": "^9.0.0"
},
"devDependencies": {
"ava": "^6.4.1",
"delay": "^7.0.0",
"execa": "^9.6.0",
"get-port": "^7.1.0",
"noop-process": "^5.0.0",
"process-exists": "^5.0.0",
"xo": "^1.2.3"
}
}