package.json•756 B
{
"name": "@smithery/mcp-openproject-smithery",
"version": "1.0.0",
"description": "MCP server for interacting with OpenProject (Smithery Edition)",
"license": "MIT",
"author": "Jesse Bautista",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"dev": "tsx watch src/index.ts",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.6.8",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/express": "^4.17.22",
"@types/node": "^22",
"tsx": "^4.19.4",
"typescript": "^5.6.2"
}
}