-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "@autodev/codebase",
"version": "1.0.1",
"type": "module",
"bin": {
"codebase": "dist/cli.js"
},
"files": [
"dist/**/*",
"vendor/node-llama-cpp/**/*",
"scripts/deploy-llamacpp-patch.ts",
"vendor/llama-addon/binaries/**/*"
],
"scripts": {
"dev": "npx tsx src/cli.ts",
"build": "rollup -c rollup.config.cjs && chmod +x dist/cli.js",
"build:llamacpp": "node vendor/llama-addon/build.mjs",
"type-check": "npx tsc -p tsconfig.json --noEmit",
"mcp-server": "npx tsx src/cli.ts --serve --demo --port=3001",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npx vitest --config vitest.e2e.config.ts",
"test:coverage": "vitest run --coverage",
"push": "npm publish --access public",
"postinstall": "npm run build && npx tsx scripts/deploy-llamacpp-patch.ts"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"@qdrant/js-client-rest": "^1.16.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/uuid": "^10.0.0",
"async-mutex": "^0.5.0",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"form-data": "^4.0.3",
"fzf": "^0.5.2",
"ignore": "^5.3.1",
"jsonc-parser": "^3.3.1",
"lodash.debounce": "^4.0.8",
"memfs": "^4.56.2",
"open": "^11.0.0",
"openai": "^4.52.0",
"p-limit": "^3.1.0",
"rollup": "^4.21.2",
"tree-sitter-wasms": "^0.1.12",
"ts-morph": "^27.0.2",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"undici": "^6.19.8",
"undici-types": "^7.10.0",
"uuid": "^10.0.0",
"vitest": "^3.2.4",
"web-tree-sitter": "^0.23.0"
},
"dependencies": {
"@realtimex/node-llama-cpp": "0.163.0",
"better-sqlite3": "^11.10.0",
"h3": "^1.15.11",
"sqlite-vec": "^0.1.9",
"tsx": "^4.20.3"
}
}