-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.22 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gemini-workspace-extension",
"version": "1.0.0",
"description": "Google Workspace MCP Server Extension",
"private": true,
"bin": {
"gemini-workspace-server": "workspace-mcp-server/dist/index.js"
},
"workspaces": [
"workspace-mcp-server"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:watch": "npm run test:watch --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:ci": "npm run test:ci --workspaces --if-present",
"start": "npm run start --workspaces --if-present",
"auth-utils": "npm run build:auth-utils -w workspace-mcp-server && node scripts/auth-utils.js",
"clean": "rm -rf release && npm run clean --workspaces --if-present",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "node scripts/release.js"
},
"dependencies": {
"@google-apps/chat": "^0.19.0",
"@google-cloud/local-auth": "^3.0.1",
"@googleapis/docs": "^5.0.1",
"@googleapis/drive": "^15.0.0",
"@modelcontextprotocol/sdk": "^1.17.5",
"dompurify": "^3.1.6",
"google-auth-library": "^10.4.0",
"googleapis": "^159.0.0",
"jsdom": "^27.0.0",
"keytar": "^7.9.0",
"marked": "^16.2.1"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/dompurify": "^3.0.5",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vercel/ncc": "^0.38.3",
"archiver": "^7.0.1",
"esbuild": "^0.25.9",
"eslint": "^9.36.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-license-header": "^0.8.0",
"jest": "^30.1.3",
"minimist": "^1.2.8",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/google-gemini/gemini-cli-workspace.git"
},
"keywords": [
"mcp",
"google-workspace",
"gmail",
"google-docs",
"google-drive",
"google-calendar",
"google-chat"
],
"author": "Allen Hutchison",
"license": "Apache-2.0"
}