package.json•1.19 kB
{
"name": "@cesarvarela/postgres-mcp",
"version": "1.0.0",
"description": "PostgreSQL MCP Server - Expose PostgreSQL database operations via Model Context Protocol",
"type": "module",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"build": "tsup",
"start": "npx tsx index.ts",
"dev": "npx tsx --watch index.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run build",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"postgresql",
"database",
"ai",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"debug": "^4.3.0",
"dotenv": "^16.0.0",
"pg": "^8.11.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.0.0",
"@types/debug": "^4.1.12",
"@types/node": "^20.0.0",
"@types/pg": "^8.10.0",
"testcontainers": "^10.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}