{
  "name": "pgautopilot",
  "version": "2.1.0",
  "type": "module",
  "description": "PGAutoPilot — an MCP server that lets AI assistants safely explore, query, and manage any PostgreSQL database. Zero setup, auto-discovery, production-safe.",
  "main": "dist/index.js",
  "bin": {
    "pgautopilot": "dist/pgautopilot.bundle.cjs"
  },
  "scripts": {
    "postinstall": "node scripts/postinstall.mjs",
    "build": "tsc -p tsconfig.build.json",
    "postbuild": "node scripts/bundle.mjs",
    "bundle": "node scripts/bundle.mjs",
    "sign": "node scripts/sign.mjs",
    "sign:gpg": "node scripts/sign.mjs --gpg",
    "verify": "node scripts/verify.mjs",
    "verify:gpg": "node scripts/verify.mjs --gpg",
    "start": "node dist/index.js",
    "start:bundle": "node dist/pgautopilot.bundle.cjs",
    "dev": "tsx src/index.ts",
    "typecheck": "tsc -p tsconfig.json",
    "lint": "tsc -p tsconfig.json && eslint src tests",
    "test": "vitest run --dir tests",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "mcp-server",
    "model-context-protocol",
    "postgresql",
    "postgres",
    "pg",
    "postgres-mcp",
    "database",
    "database-mcp",
    "database-tools",
    "sql",
    "ai",
    "ai-assistant",
    "llm",
    "claude",
    "claude-desktop",
    "cursor",
    "copilot",
    "windsurf",
    "zed",
    "schema-introspection",
    "auto-discovery",
    "zero-setup"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/cyberreinxy/pgautopilot"
  },
  "homepage": "https://github.com/cyberreinxy/pgautopilot#readme",
  "bugs": {
    "url": "https://github.com/cyberreinxy/pgautopilot/issues"
  },
  "license": "MIT",
  "author": "Cyber Reinxy",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.12.0",
    "pg": "8.12.0",
    "zod": "3.23.8"
  },
  "devDependencies": {
    "@types/node": "^22.5.0",
    "@types/pg": "^8.11.6",
    "esbuild": "^0.25.0",
    "tsx": "^4.19.0",
    "typescript": "^5.5.4",
    "@eslint/js": "^9.22.0",
    "eslint": "^8.57.0",
    "globals": "^15.15.0",
    "prettier": "^3.2.5",
    "typescript-eslint": "^8.63.0",
    "vitest": "2.1.9"
  }
}