-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.06 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.06 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@robthepcguy/rag-vault",
"version": "1.8.0",
"type": "module",
"description": "Local RAG MCP Server - Easy-to-setup document search with minimal configuration",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"rag-vault": "dist/index.js"
},
"files": [
"dist",
"skills",
"web-ui/dist"
],
"keywords": [
"typescript",
"mcp",
"mcp-server",
"model-context-protocol",
"rag",
"vector-search",
"semantic-search",
"embeddings",
"lancedb",
"transformers",
"huggingface",
"local-ai",
"offline",
"privacy",
"document-search",
"pdf",
"json",
"claude-code",
"cursor",
"codex",
"skills"
],
"author": "RobThePCGuy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RobThePCGuy/rag-vault.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"dev:remote": "tsx src/index.ts --remote",
"check": "pnpm type-check && pnpm lint && pnpm format:check",
"check:all": "pnpm check && pnpm --prefix web-ui check && pnpm check:unused && pnpm check:deps && pnpm build && pnpm test:unit",
"check:deps": "madge --circular --extensions ts src",
"check:deps:graph": "madge --extensions ts --image graph.svg src",
"check:unused": "node scripts/check-unused-exports.cjs",
"check:unused:all": "knip",
"test": "vitest run",
"test:unit": "vitest run --project backend-unit --project web-ui",
"test:integration": "RUN_EMBEDDING_INTEGRATION=1 vitest run --project backend-integration",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"format:check": "biome format src",
"web": "tsx src/web/index.ts",
"web:start": "node dist/web/index.js",
"web:dev": "concurrently -n api,ui -c blue,magenta \"pnpm web:watch\" \"pnpm --prefix web-ui dev\"",
"web:watch": "tsx watch src/web/index.ts",
"ui:build": "pnpm --prefix web-ui build",
"ui:dev": "pnpm --prefix web-ui dev",
"clean": "rm -rf .test-tmp .narrative-project .mcpregistry* node_modules tmp uploads models lancedb dist && pnpm --prefix web-ui exec rm -rf dist node_modules",
"cleanup:processes": "bash ./scripts/cleanup-test-processes.sh",
"hooks:install": "git config core.hooksPath .githooks",
"release": "bash ./scripts/release-npm.sh --bump patch",
"release:minor": "bash ./scripts/release-npm.sh --bump minor",
"release:major": "bash ./scripts/release-npm.sh --bump major",
"release:dry": "bash ./scripts/release-npm.sh --bump patch --dry-run"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@lancedb/lancedb": "^0.26.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@mozilla/readability": "^0.6.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"express": "^5.2.1",
"file-type": "^21.3.0",
"helmet": "^8.1.0",
"jsdom": "^27.4.0",
"mammoth": "^1.11.0",
"multer": "^2.0.2",
"pdfjs-dist": "^5.4.624",
"turndown": "^7.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsdom": "^27.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^22.0.0",
"@types/turndown": "5.0.6",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^9.2.1",
"knip": "^5.61.0",
"madge": "^8.0.0",
"tsc-alias": "^1.8.7",
"tsx": "^4.19.4",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
},
"mcpName": "io.github.RobThePCGuy/rag-vault",
"pnpm": {
"overrides": {
"tar": ">=7.5.7",
"diff": ">=4.0.4"
},
"onlyBuiltDependencies": [
"esbuild",
"onnxruntime-node",
"protobufjs",
"sharp"
]
}
}