-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.82 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.82 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "codexray",
"version": "2.0.3",
"description": "X-ray vision for your codebase — semantic knowledge graph that saves AI coding agents 30%+ tokens. Pre-built code intelligence for Claude Code, Cursor, Windsurf via MCP.",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"codexray": "dist/cli/index.js",
"cxr": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"claude-code", "mcp", "model-context-protocol", "code-graph",
"semantic-search", "ast", "tree-sitter", "code-intelligence",
"knowledge-graph", "code-analysis", "explore-agents",
"token-optimization", "codegraph-alternative", "code-navigation",
"symbol-search", "impact-analysis", "call-graph", "dead-code",
"cursor", "windsurf", "ai-coding", "codebase-indexing",
"dependency-tree", "refactoring", "code-search", "claude",
"claude-code-mcp", "codegraph", "agentic-coding",
"vector-embeddings", "semantic-code-search", "complexity-analysis",
"hotspot-detection", "blast-radius", "code-quality"
],
"author": "NeuralRays",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NeuralRays/codexray.git"
},
"homepage": "https://github.com/NeuralRays/codexray#readme",
"bugs": {
"url": "https://github.com/NeuralRays/codexray/issues"
},
"engines": {
"node": ">=18.0.0 <=24.x"
},
"packageManager": "npm@10.0.0",
"os": ["darwin", "linux", "win32"],
"cpu": ["x64", "arm64"],
"files": [
"dist/",
"scripts/postinstall.js",
"CLAUDE.md",
"DOCS.md",
"README.md",
"LICENSE"
],
"dependencies": {
"better-sqlite3": "^12.6.2",
"commander": "^14.0.3",
"glob": "^13.0.1",
"micromatch": "^4.0.8",
"tree-sitter": "^0.22.4",
"chokidar": "^4.0.3"
},
"optionalDependencies": {
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.6",
"tree-sitter-go": "^0.23.4",
"tree-sitter-rust": "^0.23.3",
"tree-sitter-java": "^0.23.5",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-php": "^0.23.12",
"tree-sitter-ruby": "^0.23.1",
"tree-sitter-c": "^0.23.6",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-swift": "^0.7.1",
"tree-sitter-kotlin": "^0.3.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.12.0",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
}
}