-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.17 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
{
"name": "@a-bonus/google-docs-mcp",
"version": "1.11.3",
"type": "module",
"bin": {
"google-docs-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc",
"test": "vitest run",
"test:live:docs": "vitest run src/tools/docs/cloneTable.live.test.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"google-docs",
"google-sheets",
"google-drive"
],
"author": "a-bonus",
"license": "ISC",
"description": "MCP server for Google Docs, Sheets, Drive, Gmail, and Calendar",
"dependencies": {
"@google-cloud/firestore": "^8.3.0",
"fastmcp": "^4.0.1",
"google-auth-library": "^10.5.0",
"googleapis": "^171.4.0",
"markdown-it": "^14.1.0",
"xsschema": "^0.4.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.14.1",
"prettier": "^3.4.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
}
}