package.json•1.25 kB
{
"name": "hudu-mcp",
"version": "1.0.0",
"description": "MCP server for HUDU technical documentation integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"clean": "rimraf dist",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write ."
},
"keywords": [
"mcp",
"hudu",
"documentation",
"technical-documentation",
"api-integration"
],
"author": "HUDU MCP Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jlbyh2o/hudu-mcp.git"
},
"bugs": {
"url": "https://github.com/jlbyh2o/hudu-mcp/issues"
},
"homepage": "https://github.com/jlbyh2o/hudu-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.12.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"rimraf": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}