forked from arabold/docs-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.98 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.98 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
{
"name": "@arabold/docs-mcp-server",
"version": "1.17.0",
"description": "MCP server for fetching and searching documentation",
"type": "module",
"bin": {
"docs-mcp-server": "dist/index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arabold/docs-mcp-server.git"
},
"files": [
"dist",
"public",
"db",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"prepare": "husky || true",
"build": "vite build --config vite.config.web.ts && vite build",
"start": "node --enable-source-maps dist/index.js",
"cli": "node --enable-source-maps dist/index.js",
"server": "node --enable-source-maps dist/index.ts",
"web": "node --enable-source-maps dist/index.ts web",
"dev:cli": "vite-node src/index.ts",
"dev:server": "vite-node --watch src/index.ts",
"dev:server:stdio": "vite-node --watch src/index.ts -- --protocol stdio",
"dev:server:http": "vite-node --watch src/index.ts -- --protocol http",
"dev:web": "npm-run-all --parallel dev:web:assets dev:web:bin",
"dev:web:bin": "vite-node --watch src/index.ts web",
"dev:web:assets": "vite build --config vite.config.web.ts --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"format": "biome format . --write",
"postinstall": "echo 'Skipping Playwright browser install. See README.md for details.'"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/static": "^8.1.1",
"@joplin/turndown-plugin-gfm": "^1.0.62",
"@kitajs/html": "^4.2.9",
"@kitajs/ts-html-plugin": "^4.1.1",
"@langchain/aws": "^0.1.10",
"@langchain/community": "^0.3.43",
"@langchain/google-genai": "^0.2.9",
"@langchain/google-vertexai": "^0.2.9",
"@langchain/openai": "^0.5.10",
"@mendable/firecrawl-js": "^1.29.1",
"@modelcontextprotocol/sdk": "^1.11.4",
"alpinejs": "^3.14.9",
"axios": "^1.9.0",
"axios-retry": "^4.5.0",
"better-sqlite3": "^11.10.0",
"cheerio": "^1.0.0",
"commander": "^13.1.0",
"dompurify": "^3.2.5",
"dotenv": "^16.5.0",
"env-paths": "^3.0.0",
"fastify": "^5.3.3",
"flowbite": "^3.1.2",
"fuse.js": "^7.1.0",
"header-generator": "^2.1.66",
"htmx.org": "^1.9.12",
"iconv-lite": "^0.6.3",
"jsdom": "^26.1.0",
"langchain": "0.3.19",
"mime-types": "^3.0.1",
"minimatch": "^10.0.1",
"playwright": "^1.52.0",
"psl": "^1.15.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"semver": "^7.7.2",
"sqlite-vec": "^0.1.7-alpha.2",
"turndown": "^7.2.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/vite": "^4.1.7",
"@types/alpinejs": "^3.13.11",
"@types/better-sqlite3": "^7.6.13",
"@types/jsdom": "~21.1.7",
"@types/lint-staged": "~13.3.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.17.47",
"@types/node-fetch": "^2.6.12",
"@types/psl": "^1.1.3",
"@types/semver": "^7.7.0",
"@types/turndown": "^5.0.5",
"autoprefixer": "^10.4.21",
"flowbite-typography": "^1.0.5",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"memfs": "^4.17.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.3",
"semantic-release": "^24.2.4",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-node": "^3.1.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.1.3"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md}": [
"biome check --apply --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched"
]
}
}