mcp-local-rag 0.11.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-local-rag",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Local RAG MCP Server - Easy-to-setup document search with minimal configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -54,15 +54,14 @@
|
|
|
54
54
|
"check": "biome check src",
|
|
55
55
|
"check:fix": "biome check --write src",
|
|
56
56
|
"check:unused": "knip --include exports",
|
|
57
|
-
"check:deps": "
|
|
58
|
-
"check:deps:graph": "madge --extensions ts --image graph.svg src",
|
|
57
|
+
"check:deps": "dpdm --no-tree --no-warning --exit-code circular:1 -T --tsconfig ./tsconfig.json --exclude '(node_modules|__tests__|\\.test\\.ts$|\\.spec\\.ts$)' 'src/**/*.ts'",
|
|
59
58
|
"check:all": "pnpm run check && pnpm run lint && pnpm run format:check && pnpm run check:unused && pnpm run check:deps && pnpm run build && pnpm run test",
|
|
60
59
|
"cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
|
|
61
60
|
"test:safe": "pnpm test && pnpm run cleanup:processes",
|
|
62
61
|
"prepare": "husky"
|
|
63
62
|
},
|
|
64
63
|
"dependencies": {
|
|
65
|
-
"@huggingface/transformers": "^
|
|
64
|
+
"@huggingface/transformers": "^4.0.0",
|
|
66
65
|
"@lancedb/lancedb": "^0.26.2",
|
|
67
66
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
68
67
|
"@mozilla/readability": "0.6.0",
|
|
@@ -79,7 +78,7 @@
|
|
|
79
78
|
"husky": "^9.1.7",
|
|
80
79
|
"knip": "^6.1.0",
|
|
81
80
|
"lint-staged": "^16.3.2",
|
|
82
|
-
"
|
|
81
|
+
"dpdm": "^4.0.1",
|
|
83
82
|
"tsc-alias": "^1.8.16",
|
|
84
83
|
"tsx": "^4.21.0",
|
|
85
84
|
"typescript": "^5.9.3",
|