-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 KB
/
package.json
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
{
"name": "google-workspace-mcp",
"version": "0.1.0",
"description": "Google Workspace OAuth MCP Server for Google Workspace integration",
"private": true,
"type": "module",
"bin": {
"google-workspace-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node --eval \"import('fs').then(fs => { fs.chmodSync('build/index.js', '755'); fs.chmodSync('build/scripts/setup-google-env.js', '755'); })\"",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"start": "node build/index.js",
"setup": "node build/scripts/setup-google-env.js",
"test": "jest --config jest.config.cjs",
"test:watch": "jest --config jest.config.cjs --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"express": "^4.18.2",
"google-auth-library": "^9.4.1",
"googleapis": "^129.0.0",
"winston": "^3.11.0"
},
"overrides": {
"glob": "^11.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"lru-cache": "^11.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
}
}