-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
{
"name": "@neverinfamous/postgres-mcp",
"version": "2.3.0",
"mcpName": "io.github.neverinfamous/postgres-mcp",
"description": "PostgreSQL MCP server with connection pooling, tool filtering, and full extension support",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"postgres-mcp": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"bench": "vitest bench --run",
"bench:verbose": "vitest bench --run --reporter=verbose",
"check": "npm run lint && npm run typecheck",
"generate:instructions": "node scripts/generate-server-instructions.ts"
},
"keywords": [
"postgresql",
"postgres",
"mcp",
"mcp-server",
"model-context-protocol",
"database",
"ai",
"typescript"
],
"author": "Adamic.tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/neverinfamous/postgres-mcp.git"
},
"bugs": {
"url": "https://github.com/neverinfamous/postgres-mcp/issues"
},
"homepage": "https://github.com/neverinfamous/postgres-mcp#readme",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^14.0.3",
"jose": "^6.0.0",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.3",
"@types/pg": "^8.18.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": "10.2.4",
"tar": "7.5.11"
}
}