package.json•817 B
{
"name": "smart-docs-mcp",
"version": "1.0.0",
"description": "MCP server for intelligent codebase documentation analysis and generation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"start": "node dist/index.js"
},
"keywords": [
"mcp",
"documentation",
"analysis",
"tree-sitter"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"tree-sitter": "^0.21.1",
"tree-sitter-typescript": "^0.21.2",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-python": "^0.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}