-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.63 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.63 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
95
96
{
"name": "@codeweave/mcp",
"version": "0.1.20",
"mcpName": "io.github.semihkayan/codeweave",
"description": "Hybrid semantic code search for AI agents via MCP — AST + call/type graph backed reranking",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"main": "dist/index.js",
"bin": {
"mcp": "dist/scripts/setup.js",
"codeweave": "dist/scripts/setup.js",
"codeweave-mcp": "dist/scripts/setup.js",
"codeweave-server": "dist/index.js",
"codeweave-init": "dist/scripts/init.js",
"codeweave-reindex": "dist/scripts/reindex.js",
"codeweave-setup": "dist/scripts/setup.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:integration": "vitest run test/tools",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"code-analysis",
"code-intelligence",
"call-graph",
"type-graph",
"ast",
"semantic-search",
"codebase-indexing",
"ai-tools",
"claude",
"cursor",
"tree-sitter",
"lancedb"
],
"author": "Semih Kayan",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/semihkayan/codeweave-mcp.git"
},
"homepage": "https://github.com/semihkayan/codeweave-mcp#readme",
"bugs": {
"url": "https://github.com/semihkayan/codeweave-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"@lancedb/lancedb": "^0.27.0",
"apache-arrow": "^18.0.0",
"tree-sitter": "^0.25.0",
"tree-sitter-python": "^0.25.0",
"tree-sitter-typescript": "^0.23.2",
"tree-sitter-javascript": "^0.25.0",
"tree-sitter-go": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-java": "^0.23.5",
"tree-sitter-c-sharp": "^0.23.1",
"glob": "^13.0.0",
"ignore": "^6.0.0",
"yaml": "2.8.3",
"chokidar": "^4.0.0",
"zod": "^3.23.0",
"pino": "^9.0.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.16.0",
"vitest": "^3.0.0",
"eslint": "^9.0.0",
"@types/node": "^22.0.0"
},
"overrides": {
"tree-sitter-python": { "tree-sitter": "$tree-sitter" },
"tree-sitter-typescript": { "tree-sitter": "$tree-sitter" },
"tree-sitter-javascript": { "tree-sitter": "$tree-sitter" },
"tree-sitter-go": { "tree-sitter": "$tree-sitter" },
"tree-sitter-rust": { "tree-sitter": "$tree-sitter" },
"tree-sitter-java": { "tree-sitter": "$tree-sitter" },
"tree-sitter-c-sharp": { "tree-sitter": "$tree-sitter" }
}
}