-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.41 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
{
"name": "@indiekitai/pg-dash",
"version": "0.13.2",
"description": "Lightweight PostgreSQL monitoring dashboard",
"type": "module",
"bin": {
"pg-dash": "dist/cli.js",
"pg-dash-mcp": "dist/mcp.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "pnpm build:backend && pnpm build:frontend",
"build:backend": "tsup",
"build:frontend": "vite build",
"test": "vitest run"
},
"dependencies": {
"@hono/node-server": "^1.11.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.6.2",
"hono": "^4.4.0",
"open": "^10.1.0",
"pg": "^8.12.0",
"ws": "^8.19.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.7.0",
"tailwindcss": "^4.0.0",
"tsup": "^8.1.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"license": "MIT",
"files": [
"dist/",
"README.md",
"README.zh-CN.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=18"
}
}