package.json•1.01 kB
{
"name": "@smithery/mcp-google-calendar",
"version": "1.0.0",
"description": "MCP server for interacting with Google Calendar API",
"license": "MIT",
"author": "Smithery",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format src/",
"format:fix": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist .smithery",
"oauth-server": "node src/oauth-callback-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@smithery/sdk": "^1.6.6",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"googleapis": "^150.0.1",
"zod": "^3.24.2"
},
"module": "src/index.ts",
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/express": "^5.0.3",
"@types/node": "^24.6.2",
"typescript": "^5.9.3"
}
}