-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@modelcontextprotocol/server-gdrive",
"version": "4.0.0-alpha",
"description": "MCP server for Google Workspace with operation-based progressive disclosure - direct API access to Drive, Sheets, Forms, Docs, Gmail, and Calendar",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
"type": "module",
"bin": {
"mcp-server-gdrive": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch='**/__tests__/integration/**/*.test.ts'",
"test:e2e": "jest --testMatch='**/tests/e2e/**/*.test.ts'",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"bmad:refresh": "bmad-method install -f -i codex",
"bmad:list": "bmad-method list:agents",
"bmad:validate": "bmad-method validate",
"build:worker": "tsc -p tsconfig.worker.json",
"dev:worker": "wrangler dev",
"deploy:worker": "wrangler deploy"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@modelcontextprotocol/sdk": "^1.25.1",
"googleapis": "^144.0.0",
"isolated-vm": "^6.0.2",
"redis": "^5.6.1",
"winston": "^3.17.0"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.21.0",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.6.2",
"wrangler": "^4.68.1"
}
}