-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "mcp-rag-server",
"version": "0.4.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup src/index.ts --format esm --sourcemap --dts --clean --target=node20",
"dev": "tsup src/index.ts --format esm --watch --sourcemap --target=node20",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspector:http": "powershell -NoProfile -Command \"$env:MCP_TRANSPORT='http'; npx @modelcontextprotocol/inspector http://localhost:3000/mcp --transport http\"",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@huggingface/transformers": "^4.2.0",
"dotenv": "^17.4.2",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"pdf-parse": "^2.4.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"@types/pdf-parse": "^1.1.5",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"tsup": "^8.3.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
}
}