-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.59 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
{
"name": "dialogoi-mcp",
"version": "1.0.0",
"description": "Dialogoi - RAG-powered MCP Server for Novel Projects",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:integration": "vitest --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts --watch",
"test:integration:qdrant": "vitest --config vitest.integration.qdrant.config.ts",
"test:all": "npm run test && npm run test:integration",
"lint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings 0",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci": "rm -rf node_modules package-lock.json && npm install",
"test:vector": "tsx scripts/test-vector-backend.ts",
"setup:qdrant": "./scripts/setup-test-qdrant.sh",
"cleanup:qdrant": "./scripts/cleanup-test-qdrant.sh"
},
"dependencies": {
"@huggingface/transformers": "^3.6.3",
"@modelcontextprotocol/sdk": "^1.12.3",
"@qdrant/js-client-rest": "^1.14.1",
"chokidar": "^4.0.3",
"dotenv": "^16.4.5",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}