{
  "name": "overmind-postgres-mcp",
  "version": "1.5.0",
  "description": "A comprehensive MCP server for PostgreSQL database interaction",
  "main": "dist/index.js",
  "bin": {
    "overmind-postgres-mcp": "dist/index.js"
  },
  "type": "module",
  "engines": {
    "node": ">=20 <25"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config.d.ts",
      "import": "./dist/config.js"
    },
    "./tools": {
      "types": "./dist/tools/coreTools.d.ts",
      "import": "./dist/tools/coreTools.js"
    },
    "./services/search": {
      "types": "./dist/services/intelligentSearchService.d.ts",
      "import": "./dist/services/intelligentSearchService.js"
    },
    "./services/embeddings": {
      "types": "./dist/services/embeddingService.d.ts",
      "import": "./dist/services/embeddingService.js"
    },
    "./utils/logger": {
      "types": "./dist/utils/logger.d.ts",
      "import": "./dist/utils/logger.js"
    }
  },
  "files": [
    "dist",
    "migrations",
    "assets",
    "README.md",
    "bin"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "start": "node dist/index.js",
    "start:http": "FORCE_COLOR=0 FASTMCP_TRANSPORT=httpStream FASTMCP_PORT=5433 node dist/index.js",
    "dev": "node dist/index.js",
    "watch": "tsx watch src/index.ts",
    "check": "node -e \"dist/config.js && echo '\u2705 Configuration OK'\"",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:qwen3": "node dist/scripts/test_qwen3_integration.js",
    "clean": "node -e \"const fs=require('fs');const path=require('path');const distPath=path.join(process.cwd(),'dist');if(fs.existsSync(distPath)){try{fs.rmSync(distPath,{recursive:true,force:true});}catch(e){console.log('\u26a0\ufe0f  dist cleanup skipped:',e.message);}}const files=fs.readdirSync('.').filter(f=>f.endsWith('.log'));files.forEach(f=>{try{fs.unlinkSync(f);}catch(e){console.log('\u26a0\ufe0f  log cleanup skipped:',e.message);}});console.log('\u2705 Cleaned')\"",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "prebuild": "npm run clean && copy /Y bin\\launch.js dist\\bin\\launch.js 2>nul || echo no bin",
    "postbuild": "echo \u2705 Build completed successfully",
    "mcp:test": "node dist/index.js",
    "migrate:qwen3": "psql -U postgres -d financial_analyst -f migrations/migrate_to_qwen3_1024.sql",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "postgresql",
    "postgres",
    "database",
    "sql",
    "fastmcp",
    "typescript",
    "model-context-protocol"
  ],
  "author": "Deamon",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DeamonDev888/PostgreSQL-MCP-Serveur.git"
  },
  "homepage": "https://discord.gg/4AR82phtBz",
  "dependencies": {
    "axios": "^1.7.9",
    "dotenv": "^16.4.7",
    "fastmcp": "^4.0.1",
    "pg": "^8.20.0",
    "pino": "^9.6.0",
    "pino-pretty": "^13.0.0",
    "pino-roll": "^2.2.0",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@types/node": "^22.19.19",
    "@types/pg": "^8.20.0",
    "@types/pino": "^7.0.5",
    "@typescript-eslint/eslint-plugin": "^8.50.0",
    "@typescript-eslint/parser": "^8.50.0",
    "eslint": "^9.18.0",
    "globals": "^17.1.0",
    "prettier": "^3.4.2",
    "tsx": "^4.19.2",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.59.3",
    "vitest": "^3.0.3"
  }
}