-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.72 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": "claude-local-docs",
"version": "1.0.23",
"description": "Local-first Context7 alternative — indexes JS/TS dependency docs with a 4-stage RAG pipeline. Uses TEI (Text Embeddings Inference) Docker containers for embeddings and reranking.",
"type": "module",
"main": "dist/index.js",
"bin": {
"claude-local-docs": "dist/index.js"
},
"files": [
"dist",
"commands",
"hooks",
"scripts",
".claude-plugin",
".mcp.json",
"docker-compose.yml",
"docker-compose.nvidia.yml",
"start-tei.sh",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsc && node --test dist/unit.test.js dist/docs.test.js dist/code.test.js",
"test:unit": "tsc && node --test dist/unit.test.js",
"test:docs": "tsc && node --test dist/docs.test.js",
"test:code": "tsc && node --test dist/code.test.js",
"prepublishOnly": "tsc"
},
"keywords": [
"claude-code",
"mcp",
"documentation",
"search",
"rag",
"embeddings",
"context7-alternative",
"local-first",
"semantic-search",
"llms-txt"
],
"author": "matthew",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/matteodante/claude-local-docs.git"
},
"dependencies": {
"@lancedb/lancedb": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"ignore": "^7.0.0",
"tree-sitter-wasms": "^0.1.13",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"web-tree-sitter": "^0.24.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/turndown": "^5.0.6",
"esbuild": "^0.27.3",
"typescript": "^5.7.0"
}
}