-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "pscan",
"version": "1.0.0",
"description": "A CLI tool to interactively scan and kill processes by port number on macOS/Linux",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pscan": "./dist/index.js"
},
"scripts": {
"build": "bun build ./src/cli/index.ts --outdir ./dist --target bun --minify",
"build:watch": "bun build ./src/cli/index.ts --outdir ./dist --target bun --watch",
"build:executable": "bun build ./src/cli/index.ts --compile --outfile pscan",
"dev": "bun --watch src/cli/index.ts",
"start": "bun dist/index.js",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"process",
"port",
"kill",
"scan",
"network",
"tcp",
"utility"
],
"author": "Fernando Bosco",
"license": "Apache-2.0",
"dependencies": {
"commander": "^11.1.0",
"enquirer": "^2.4.1",
"execa": "^9.5.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"semantic-release": "^24.2.3",
"@types/node": "^20.17.30",
"bun-types": "latest",
"typescript": "^5.8.3"
},
"engines": {
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fernandobelotto/pscan.git"
},
"bugs": {
"url": "https://github.com/fernandobelotto/pscan/issues"
},
"homepage": "https://github.com/fernandobelotto/pscan#readme"
}