-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 884 Bytes
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
{
"name": "rust-docs-mcp-server",
"version": "1.0.0",
"description": "MCP server for accessing Rust documentation from docs.rs",
"module": "index.ts",
"type": "module",
"bin": {
"rust-docs-mcp-server": "./build/index.js"
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./build --target node",
"start": "bun run build && node ./build/index.js",
"dev": "bun run src/index.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/turndown": "^5.0.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@biomejs/biome": "^1.9.4",
"@modelcontextprotocol/sdk": "^1.6.0",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"pino": "^9.6.0",
"turndown": "^7.2.0",
"zod": "^3.24.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}