package.json•2.17 kB
{
"name": "code-graph-context",
"version": "0.1.0",
"description": "MCP server that builds code graphs to provide rich context to LLMs",
"type": "module",
"homepage": "https://github.com/drewdrewH/code-graph-context#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/drewdrewH/code-graph-context.git"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"code-graph",
"code-analysis",
"neo4j",
"graph-database",
"typescript",
"nestjs",
"ast-parser",
"semantic-search",
"openai",
"embeddings",
"graph-rag",
"llm",
"claude"
],
"author": "Andrew Hernandez",
"license": "MIT",
"main": "dist/mcp/mcp.server.js",
"bin": {
"code-graph-context": "dist/mcp/mcp.server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"mcp": "node dist/mcp/mcp.server.js",
"dev": "tsc --watch",
"graph:print": "npm run build && node dist/utils/test.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"commander": "^14.0.0",
"dotenv": "^17.2.3",
"glob": "^11.0.3",
"neo4j": "^2.0.0-RC2",
"neo4j-driver": "^5.28.1",
"openai": "^5.10.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/neo4j": "^2.0.6",
"@types/node": "^20.19.1",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"reflect-metadata": "^0.2.2",
"ts-morph": "^26.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"uuid": "^11.1.0"
}
}