-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "codegraphx",
"version": "1.1.0",
"description": "Token-efficient codebase graph engine for AI coding agents. Tree-sitter parsing, SQLite semantic graph, impact tracing, and an MCP server with zero-config auto-indexing.",
"main": "src/cli.js",
"scripts": {
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"code-graph",
"code-analysis",
"tree-sitter",
"ast",
"ai-agents",
"claude",
"gemini",
"impact-analysis",
"dependency-graph",
"sqlite"
],
"author": "Prayas Jadhav",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/techcraze00/CodeGraphX.git"
},
"homepage": "https://github.com/techcraze00/CodeGraphX#readme",
"bugs": {
"url": "https://github.com/techcraze00/CodeGraphX/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"mcp-setup.md"
],
"type": "commonjs",
"bin": {
"codegraphx": "bin/codegraphx",
"cgx": "bin/cgx",
"cgx-mcp": "bin/cgx-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@octokit/webhooks": "^14.2.0",
"@toon-format/toon": "^2.1.0",
"better-sqlite3": "^12.10.0",
"bloom-filters": "^3.0.4",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"kysely": "^0.28.17",
"pg": "^8.20.0",
"tree-sitter": "0.21.1",
"tree-sitter-css": "0.21.0",
"tree-sitter-html": "0.23.2",
"tree-sitter-javascript": "0.21.0",
"tree-sitter-python": "0.21.0",
"tree-sitter-typescript": "0.23.2",
"ws": "^8.20.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@types/pg": "^8.20.0",
"babel-jest": "^30.4.1",
"jest": "^30.4.2"
}
}