-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 979 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 979 Bytes
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": "@neilblaze/portscope",
"version": "1.5.0",
"description": "A beautiful CLI tool to see & manage what's running on your ports",
"type": "module",
"keywords": [
"cli",
"port",
"lsof",
"ports",
"process",
"terminal",
"dev-server",
"developer-tools",
"framework-detection"
],
"author": "Pratyay Banerjee",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Neilblaze/portscope.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"engines": {
"node": ">=18"
},
"files": [
"src/"
],
"bin": {
"portscope": "./src/index.js",
"ports": "./src/index.js",
"whoisonport": "./src/index.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js",
"test": "node --test tests/*.test.js"
},
"dependencies": {
"chalk": "5.6.2",
"cli-table3": "0.6.5",
"string-width": "8.2.0"
}
}