-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.21 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.21 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
{
"name": "@tr4n2uil/codebase-mcp",
"version": "1.0.65",
"description": "Cursor for Claude Code: Local semantic search over a repository with MCP",
"type": "module",
"main": "dist/main.js",
"bin": {
"codebase-mcp": "dist/main.js",
"codebase-mcp-daemon": "dist/daemon-entry.js",
"codebase-mcp-reindex": "dist/reindex-cli.js",
"codebase-mcp-install-claude": "dist/codebase-mcp-install-claude.js",
"codebase-mcp-embed-server": "scripts/codebase-mcp-embed-server.py"
},
"files": [
"dist",
"scripts/codebase-mcp-embed-server.py",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"daemon": "node dist/daemon-entry.js",
"reindex": "node dist/reindex-cli.js",
"prestart": "npm run build",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run typecheck",
"ps": "ps auxww | grep node | grep dist | grep \\.js$",
"push-npm-package": "npm run build && npm run typecheck && npm version patch && npm publish"
},
"keywords": [
"cursor",
"claude",
"openai",
"mcp",
"vector",
"embeddings",
"codebase"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tr4n2uil/codebase_mcp.git"
},
"homepage": "https://github.com/tr4n2uil/codebase_mcp#readme",
"bugs": {
"url": "https://github.com/tr4n2uil/codebase_mcp/issues"
},
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@xenova/transformers": "^2.17.2",
"apache-arrow": "^18.1.0",
"chokidar": "^5.0.0",
"ignore": "^7.0.5",
"picomatch": "^4.0.2",
"tree-sitter": "^0.22.4",
"tree-sitter-go": "^0.23.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.23.1",
"tree-sitter-python": "^0.23.0",
"tree-sitter-ruby": "^0.23.1",
"tree-sitter-rust": "^0.20.0",
"tree-sitter-typescript": "^0.23.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18"
},
"overrides": {
"onnxruntime-web": "1.24.3",
"protobufjs": "^7.5.5",
"tar": "^7.5.11"
}
}