Files
dbmole-mcp/package.json
T
2026-06-12 02:49:25 +05:00

67 lines
1.9 KiB
JSON

{
"name": "dbmole-mcp",
"version": "0.1.0",
"description": "MCP server for PostgreSQL and MySQL with named connections and SSH tunnels",
"license": "MIT",
"author": "smartass",
"repository": {
"type": "git",
"url": "git+https://git.smartass.pw/admin/dbmole-mcp.git"
},
"homepage": "https://git.smartass.pw/admin/dbmole-mcp",
"keywords": [
"mcp",
"model-context-protocol",
"postgres",
"postgresql",
"mysql",
"ssh-tunnel",
"database",
"stdio"
],
"type": "module",
"bin": {
"dbmole-mcp": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run typecheck && npm run test:unit && npm run build",
"build": "tsup",
"dev": "tsx src/index.ts",
"lint": "biome check src test",
"lint:fix": "biome check --write src test",
"typecheck": "tsc --noEmit",
"test": "vitest run --project unit",
"test:unit": "vitest run --project unit",
"test:int": "vitest run --project integration",
"test:all": "vitest run",
"coverage": "vitest run --project unit --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"mysql2": "^3.22.5",
"pg": "^8.21.0",
"ssh2": "^1.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@testcontainers/mysql": "^11.14.0",
"@testcontainers/postgresql": "^11.14.0",
"@types/node": "^22.19.21",
"@types/pg": "^8.20.0",
"@types/ssh2": "^1.15.5",
"@vitest/coverage-v8": "^3.2.6",
"testcontainers": "^11.14.0",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^3.2.6"
}
}