ubiquitous-invention/apps/mcp-server/package.json

24 lines
535 B
JSON
Raw Normal View History

{
"name": "@tasks/mcp-server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup src/index.ts --format esm --dts",
"start": "node dist/index.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.0",
"@tasks/database": "workspace:*",
"@tasks/shared": "workspace:*",
"zod": "^3.24.0"
},
"devDependencies": {
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.0"
}
}