Files
caldav-mcp/package.json

29 lines
611 B
JSON

{
"name": "caldav-mcp",
"version": "0.1.0",
"description": "MCP server for CalDAV",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"dotenv": "^16.4.7",
"fast-xml-parser": "^4.5.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}