package.json•968 B
{
"name": "mcp-doc",
"module": "index.ts",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "node dist/index.js",
"dev": "bun run src/index.ts",
"clean": "rimraf dist",
"build": "bun run clean && tsc",
"watch": "bun --hot run src/index.ts",
"dev:watch": "nodemon --watch src --ext ts,js --exec 'bun run src/index.ts'",
"inspect": "bunx @modelcontextprotocol/inspector",
"doc:download": "bun run src/scripts/download.ts"
},
"private": true,
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/bun": "latest",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/xml2js": "^0.4.14",
"nodemon": "^3.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"adm-zip": "^0.5.16",
"cors": "^2.8.5",
"express": "^5.1.0",
"fastify": "^5.3.2",
"xml2js": "^0.6.2",
"zod": "^3.24.3"
}
}