-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "@superdl/codexray",
"version": "0.0.3",
"description": "Code intelligence MCP server for Claude Code & Codex CLI — AST call graph analysis and hybrid semantic search (Dense + Sparse + RRF + Cross-Encoder Reranker) across 7 languages.",
"bin": {
"codexray": "dist/bin/codexray.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"postinstall": "node -e \"var f='dist/install/download.js';require('fs').existsSync(f)&&require('./'+f).downloadBinary()||console.log('Run codexray to download the binary')\" || true",
"preuninstall": "echo 'Run codexray uninstall-hooks to clean up git hooks'",
"prepublishOnly": "npm run build"
},
"files": [
"dist/"
],
"keywords": [
"code-intelligence",
"semantic-search",
"call-graph",
"code-analysis",
"claude-code",
"mcp",
"codex",
"hybrid-search",
"reranker",
"cross-encoder",
"embedding",
"tree-sitter",
"bm25",
"lancedb",
"rust",
"cli"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^25.9.2",
"typescript": "^6.0.3"
}
}