-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.96 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.96 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
{
"name": "pm2-boss",
"version": "0.1.0",
"description": "Beautiful web dashboard for PM2 process management",
"type": "module",
"bin": {
"pm2-boss": "./dist/cli.js"
},
"main": "./dist/server.js",
"files": [
"dist"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"tsx watch src/cli/index.ts -- --no-open\" \"vite\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite",
"build": "npm run build:server && npm run build:client",
"build:client": "vite build",
"build:server": "tsup",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"preview": "node dist/cli.js"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@hono/node-ws": "^1.1.1",
"grammy": "^1.41.1",
"hono": "^4.7.4",
"pidusage": "^3.0.0",
"pm2": ">=5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/vite": "^4.1.3",
"@types/node": "^22.13.10",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"concurrently": "^9.1.2",
"lucide-react": "^0.474.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.3.0",
"recharts": "^2.15.1",
"sonner": "^2.0.1",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"zustand": "^5.0.3"
},
"peerDependencies": {
"pm2": ">=5.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"pm2",
"dashboard",
"process-manager",
"monitoring",
"web-ui"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/n1ghtcoder/pm2-boss.git"
},
"homepage": "https://github.com/n1ghtcoder/pm2-boss#readme",
"bugs": {
"url": "https://github.com/n1ghtcoder/pm2-boss/issues"
}
}