-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"name": "code-intelligence",
"version": "1.0.0",
"description": "Local code intelligence system with AST parsing and vector search",
"license": "MIT",
"type": "module",
"scripts": {
"build": "bunx swc src -d dist --strip-leading-paths",
"test": "bun test ./test/*.test.ts",
"typecheck": "bunx tsc --noEmit",
"dev": "bun src/cli.ts",
"mcp": "bun src/mcp-server.ts",
"start": "bun src/mcp-server.ts --http",
"bench:runtime": "bun scripts/bench-runtime.ts",
"bench:runtime:full": "bun scripts/bench-runtime.ts --mode full",
"bench:runtime:fresh": "bun scripts/bench-runtime.ts --from-scratch"
},
"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/bun": "^1.3.13",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
}
}