-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.22 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
{
"name": "codecortex-ai",
"version": "0.2.0",
"description": "Persistent, AI-powered codebase knowledge layer. Pre-digests codebases into structured knowledge and serves to AI agents via MCP.",
"type": "module",
"bin": {
"codecortex": "./dist/cli/index.js"
},
"scripts": {
"dev": "tsx watch src/cli/index.ts",
"build": "tsup",
"test": "vitest run",
"lint": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rushikeshmore/CodeCortex.git"
},
"keywords": [
"ai",
"codebase",
"knowledge",
"mcp",
"tree-sitter",
"code-intelligence",
"developer-tools"
],
"author": "Rushikesh More",
"license": "MIT",
"bugs": {
"url": "https://github.com/rushikeshmore/CodeCortex/issues"
},
"homepage": "https://codecortex-ai.vercel.app",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"commander": "^13.0.0",
"glob": "^11.0.0",
"simple-git": "^3.27.0",
"tree-sitter": "^0.25.0",
"tree-sitter-bash": "^0.23.3",
"tree-sitter-c": "^0.23.5",
"tree-sitter-c-sharp": "^0.23.1",
"tree-sitter-cpp": "^0.23.4",
"tree-sitter-dart": "^1.0.0",
"tree-sitter-elisp": "^1.6.1",
"tree-sitter-elixir": "^0.3.4",
"tree-sitter-elm": "^4.5.0",
"tree-sitter-go": "^0.23.4",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-kotlin": "^0.3.8",
"tree-sitter-lua": "^2.1.3",
"tree-sitter-objc": "^3.0.2",
"tree-sitter-ocaml": "^0.24.2",
"tree-sitter-php": "^0.23.12",
"tree-sitter-python": "^0.23.6",
"tree-sitter-ql": "^1.0.0",
"tree-sitter-ruby": "^0.23.1",
"tree-sitter-rust": "^0.23.2",
"tree-sitter-scala": "^0.23.4",
"tree-sitter-solidity": "^1.2.13",
"tree-sitter-swift": "^0.7.1",
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-vue": "^0.2.1",
"tree-sitter-zig": "^0.1.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}