-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.21 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"name": "wso2-docs-mcp-server",
"version": "1.2.0",
"mcpName": "io.github.iamvirul/wso2-docs-mcp-server",
"description": "Production-ready MCP server providing RAG-based access to WSO2 documentation",
"main": "dist/src/index.js",
"bin": {
"wso2-docs-mcp-server": "./dist/src/index.js",
"wso2-docs-crawl": "./dist/scripts/crawl.js",
"wso2-docs-migrate": "./dist/scripts/migrate.js"
},
"files": [
"dist",
".env.example",
"docker-compose.yml",
"config-examples",
"LICENSE",
"CHANGELOG.md",
"server.json"
],
"repository": {
"type": "git",
"url": "https://github.com/iamvirul/wso2-docs-mcp-server"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"wso2",
"rag",
"vector",
"docs",
"ai"
],
"author": "iamvirul",
"license": "Apache-2.0",
"scripts": {
"build": "NODE_OPTIONS=\"--max-old-space-size=4096\" tsc --project tsconfig.json",
"prepare": "npm run build",
"start": "node dist/src/index.js",
"dev": "tsx src/index.ts",
"crawl": "tsx scripts/crawl.ts",
"reindex": "tsx src/jobs/reindexDocs.ts",
"db:migrate": "tsx scripts/migrate.ts",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=verbose"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.5.0",
"axios": "^1.6.8",
"cheerio": "^1.0.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"openai": "^4.52.0",
"p-limit": "3.1.0",
"pg": "^8.11.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.6",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}