-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "@13w/local-rag",
"version": "2.0.0",
"description": "Distributed semantic memory + code RAG as an MCP plugin for Claude Code agents",
"logo": "logo.svg",
"type": "module",
"files": [
"dist/",
"logo.svg"
],
"bin": {
"local-rag": "dist/bin.js"
},
"repository": {
"type": "git",
"url": "https://github.com/13W/local-rag.git"
},
"homepage": "https://github.com/13W/local-rag#readme",
"bugs": {
"url": "https://github.com/13W/local-rag/issues"
},
"keywords": [
"mcp",
"claude",
"claude-code",
"rag",
"memory",
"vector-search",
"qdrant",
"ollama",
"code-search"
],
"scripts": {
"build:ui": "pnpm -C src/dashboard-ui run build",
"build": "pnpm run build:ui && tsc",
"start": "node dist/bin.js serve",
"index": "node dist/bin.js index",
"watch": "node dist/bin.js watch",
"re-embed": "node dist/bin.js re-embed",
"test": "vitest run",
"test:watch": "vitest",
"bench:build": "tsc -p tsconfig.bench.json",
"bench": "node dist/scripts/benchmark.js",
"bench:fast": "node dist/scripts/benchmark.js --no-descriptions",
"bench:rerun": "node dist/scripts/benchmark.js --skip-index",
"prepublish": "pnpm build"
},
"dependencies": {
"@fastify/static": "^9.1.3",
"@google/gemini-cli": "0.39.0-nightly.20260411.0957f7d3e",
"@modelcontextprotocol/sdk": "^1.29.0",
"@qdrant/js-client-rest": "^1.17.0",
"chokidar": "^5.0.0",
"fastify": "^5.8.5",
"ignore": "^7.0.5",
"js-yaml": "^4.1.1",
"smol-toml": "^1.6.1",
"tree-sitter-go": "^0.25.0",
"tree-sitter-rust": "^0.24.0",
"tree-sitter-typescript": "^0.23.2",
"web-tree-sitter": "^0.26.8",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}