forked from gemini-cli-extensions/workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.78 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.78 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "gemini-workspace-extension",
"version": "0.0.5",
"description": "Google Workspace Server Extension",
"private": true,
"bin": {
"gemini-workspace-server": "workspace-server/dist/index.js"
},
"workspaces": [
"workspace-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-server && node scripts/auth-utils.js",
"clean": "npm run clean --workspaces --if-present && rm -rf release node_modules logs docs/.vitepress/cache docs/.vitepress/dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"release": "node scripts/release.js",
"release:dev": "npm install && npm run build && node scripts/release.js",
"set-version": "node scripts/set-version.js",
"version": "node scripts/set-version.js && git add workspace-server/package.json",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@google-apps/chat": "^0.23.0",
"@google-cloud/local-auth": "^3.0.1",
"@googleapis/docs": "^9.2.1",
"@googleapis/drive": "^20.1.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"google-auth-library": "^10.6.1",
"googleapis": "^171.2.0",
"keytar": "^7.9.0"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.55.0",
"@vercel/ncc": "^0.38.3",
"archiver": "^7.0.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.3",
"eslint-plugin-headers": "^1.3.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-license-header": "^0.9.0",
"jest": "^30.1.3",
"minimist": "^1.2.8",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vite": "^7.3.1",
"vitepress": "^1.6.4",
"vue": "^3.5.29"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-cli-extensions/workspace.git"
},
"keywords": [
"google-workspace",
"gmail",
"google-docs",
"google-drive",
"google-calendar",
"google-chat",
"google-people",
"google-sheets",
"google-slides",
"gemini-cli"
],
"author": "Allen Hutchison",
"license": "Apache-2.0",
"overrides": {
"vite": "$vite"
}
}