{
  "name": "mcp-oracle-database",
  "version": "1.1.4",
  "description": "Model Context Protocol (MCP) server for database queries - enables AI assistants like GitHub Copilot to execute read-only SQL queries against Oracle databases",
  "main": "dist/server.js",
  "type": "module",
  "bin": {
    "mcp-database-server": "dist/server.js"
  },
  "files": [
    "dist/server.js",
    "dist/server.js.map",
    "dist/server.d.ts",
    "dist/server.d.ts.map",
    "dist/config.js",
    "dist/config.js.map",
    "dist/config.d.ts",
    "dist/config.d.ts.map",
    "dist/database/",
    "dist/tools/",
    "dist/utils/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/server.js",
    "test-client": "node dist/client.js",
    "test-discovery": "node dist/test-discovery.js",
    "test-query": "node dist/manualQuery.js",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepare": "husky",
    "prepublishOnly": "npm run typecheck && npm test && npm run clean && npm run build",
    "release:patch": "npm version patch && git push && git push --tags && npm publish",
    "release:minor": "npm version minor && git push && git push --tags && npm publish",
    "release:major": "npm version major && git push && git push --tags && npm publish"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "database",
    "sql",
    "copilot",
    "github-copilot",
    "ai",
    "llm",
    "vscode",
    "oracle",
    "oracle-database"
  ],
  "author": "Tanner B",
  "license": "SEE LICENSE IN LICENSE.md",
  "repository": {
    "type": "git",
    "url": "https://github.com/tannerpace/mcp-oracle-database.git"
  },
  "bugs": {
    "url": "https://github.com/tannerpace/mcp-oracle-database/issues"
  },
  "homepage": "https://github.com/tannerpace/mcp-oracle-database#readme",
  "engines": {
    "node": ">=18.17.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.20.2",
    "dotenv": "^16.3.1",
    "oracledb": "^6.4.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@types/node": "^20.19.23",
    "eslint-plugin-perfectionist": "^5.9.0",
    "husky": "^9.1.7",
    "typescript": "^5.3.3",
    "vitest": "^4.1.5"
  }
}
