forked from langchain-ai/mcpdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@chr33s/mcpdoc",
"version": "0.3.1",
"description": "Server llms-txt documentation over MCP (Node.js/TypeScript)",
"keywords": [
"mcpdoc"
],
"license": "MIT",
"author": "chr33s",
"repository": {
"type": "git",
"url": "https://github.com/chr33s/mcpdoc"
},
"bin": {
"mcpdoc": "dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit --strict && oxfmt --check . && oxlint --import-plugin --type-aware .",
"clean": "rm -rf dist",
"dev": "npm run dev:watch & node --watch dist/cli.js",
"dev:worker": "wrangler dev",
"dev:watch": "tsc --watch",
"deploy": "wrangler deploy",
"fix": "oxfmt --write . && oxlint --fix --fix-suggestions --import-plugin --type-aware .",
"start": "node dist/cli.js",
"test": "node --test dist/tests.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"turndown": "7.2.2",
"zod": "4.3.6"
},
"devDependencies": {
"@types/node": "25.3.0",
"@types/turndown": "5.0.6",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"oxlint-tsgolint": "0.15.0",
"typescript": "5.9.3",
"wrangler": "4.68.1"
},
"engines": {
"node": ">=22.18.0"
}
}