-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.12 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.12 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@puberty-labs/porthub",
"version": "0.1.1",
"description": "DHCP for Developers - Professional port registry prevents 'address already in use' errors with automatic lease management, AI assistant integration, and real-time dashboard",
"main": "dist/index.js",
"bin": {
"porthub": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/daemon.js",
"test": "echo \"No tests configured yet\" && exit 0",
"test:unit": "echo \"No unit tests configured yet\" && exit 0",
"test:integration": "echo \"No integration tests configured yet\" && exit 0",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"port",
"port-management",
"port-registry",
"port-conflict",
"address-already-in-use",
"eaddrinuse",
"dhcp",
"development",
"dev-tools",
"local-server",
"cli",
"daemon",
"registry",
"ai-assistant",
"cursor",
"automation",
"multi-project",
"react",
"nextjs",
"node",
"typescript",
"websocket",
"dashboard",
"ttl"
],
"author": "PortHub Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Jason-Vaughan/PortHub.git"
},
"bugs": {
"url": "https://github.com/Jason-Vaughan/PortHub/issues"
},
"homepage": "https://github.com/Jason-Vaughan/PortHub#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dashboard-dist/",
"README.md",
"LICENSE",
"screenshots/*.png",
"!**/*.map"
],
"dependencies": {
"commander": "^11.0.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.0",
"node-ipc": "^11.1.0",
"ws": "^8.14.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"@types/inquirer": "^9.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"ts-jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
}
}