-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "port-client",
"version": "2.0.1",
"description": "A powerful utility for managing processes on specified ports, including options for checking port status, killing processes, handling multiple ports, enabling interactive mode, and supporting graceful termination.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"build:prod": "ncc build index.js -o dist && terser dist/index.js -o dist/index.js --compress --mangle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fix2015/clean-port.git"
},
"bin": {
"port-client": "cli.js"
},
"keywords": [
"kill-port",
"port-management",
"cli",
"process-termination",
"tcp",
"udp",
"interactive-cli",
"development-tool",
"port-client",
"port-manager"
],
"author": "Semianchuk Vitalii",
"license": "ISC",
"bugs": {
"url": "https://github.com/fix2015/clean-port/issues"
},
"homepage": "https://github.com/fix2015/clean-port#readme",
"dependencies": {
"get-them-args": "^1.3.2",
"is-port-reachable": "^4.0.0",
"readline": "^1.3.0",
"shell-exec": "^1.0.2"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"terser": "^5.37.0",
"typescript": "^5.7.3"
}
}