init repo

This commit is contained in:
Sun-ZhenXing
2025-12-18 23:28:42 +08:00
commit 9b1173edaa
16 changed files with 5366 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "mcp-docs",
"version": "0.1.0",
"type": "module",
"bin": {
"mcp-docs": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "tsc",
"docs:build": "rspress build",
"docs:check": "biome check --write",
"docs:dev": "rspress dev",
"docs:format": "biome format --write",
"docs:preview": "rspress preview"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^25.0.3",
"rspress": "^1.47.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}