package.json•1.84 kB
{
"name": "mcp-nextcloud-calendar",
"version": "0.1.0",
"type": "module",
"main": "build/index.js",
"bin": {
"nextcloud-calendar": "build/index.js"
},
"scripts": {
"build": "tsc --skipLibCheck && chmod 755 build/index.js",
"start": "node build/index.js",
"dev": "tsc --skipLibCheck && node build/index.js",
"dev:watch": "tsc --skipLibCheck --watch",
"test": "NODE_ENV=test node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"keywords": [
"nextcloud",
"calendar",
"mcp"
],
"author": "",
"license": "ISC",
"description": "MCP server for Nextcloud Calendar integration",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/express": "^5.0.1",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"fast-xml-parser": "^5.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"uuid": "^11.1.0",
"xml2js": "^0.6.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.1",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2"
}
}