-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 853 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 853 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
{
"name": "mcp-server-postgres",
"version": "1.0.0",
"description": "Production-grade MCP server for PostgreSQL with schema-awareness and safety guardrails.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "jest",
"lint": "eslint 'src/**/*.ts'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"pg": "^8.11.3",
"zod": "^3.22.4",
"dotenv": "^16.4.5",
"pino": "^8.19.0",
"pg-query-emscripten": "^0.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/pg": "^8.11.2",
"@types/uuid": "^9.0.8",
"typescript": "^5.3.3",
"ts-node-dev": "^2.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}