package.json•1.46 kB
{
"name": "coderag",
"version": "1.0.0",
"description": "MCP Server for Neo4J GraphRAG - stores and retrieves rich code metadata in graph format",
"main": "build/index.js",
"type": "module",
"bin": {
"coderag-scan": "build/cli/scan.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node build/index.js",
"scan": "tsx src/cli/scan.ts",
"scan:built": "node build/cli/scan.js",
"test": "jest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"neo4j",
"graphrag",
"code-analysis"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/tmp": "^0.2.6",
"@typescript-eslint/parser": "^6.13.0",
"@typescript-eslint/types": "^6.21.0",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"glob": "^10.3.10",
"neo4j-driver": "^5.25.0",
"openai": "^5.3.0",
"simple-git": "^3.28.0",
"tmp": "^0.2.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"files": [
"build"
]
}