-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 890 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 890 Bytes
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
{
"name": "code-intelligence",
"version": "1.0.0",
"description": "Local code intelligence system with AST parsing and vector search",
"license": "MIT",
"type": "module",
"scripts": {
"build": "swc src -d dist --strip-leading-paths",
"test": "node --import tsx --test ./test/*.test.ts",
"typecheck": "tsc --noEmit",
"dev": "tsx src/cli.ts",
"mcp": "tsx src/mcp-server.ts",
"start": "tsx src/mcp-server.ts --http"
},
"bin": {
"code-intel": "./bin/code-intel.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"@qdrant/js-client-rest": "^1.9.0",
"commander": "^12.1.0",
"fastembed": "^2.1.0",
"php-parser": "^3.5.0",
"ts-morph": "^23.0.0"
},
"devDependencies": {
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.21",
"@types/node": "^20.14.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
}
}