-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "@sdsrs/code-graph",
"version": "0.12.0",
"description": "MCP server that indexes codebases into an AST knowledge graph with semantic search, call graph traversal, and HTTP route tracing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sdsrss/code-graph-mcp.git"
},
"keywords": [
"mcp",
"code-graph",
"ast",
"knowledge-graph",
"semantic-search",
"tree-sitter",
"code-analysis",
"call-graph"
],
"bin": {
"code-graph": "bin/cli.js",
"code-graph-mcp": "bin/cli.js"
},
"files": [
"bin/cli.js",
"README.md",
"claude-plugin"
],
"scripts": {
"build": "cargo build --release --no-default-features && node scripts/copy-binary.js",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && ln -sf ../../scripts/pre-commit.sh .git/hooks/pre-commit || true"
},
"engines": {
"node": ">=16"
},
"optionalDependencies": {
"@sdsrs/code-graph-linux-x64": "0.12.0",
"@sdsrs/code-graph-linux-arm64": "0.12.0",
"@sdsrs/code-graph-darwin-x64": "0.12.0",
"@sdsrs/code-graph-darwin-arm64": "0.12.0",
"@sdsrs/code-graph-win32-x64": "0.12.0"
}
}