-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 1.08 KB
/
package.json
File metadata and controls
32 lines (31 loc) · 1.08 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
{
"name": "google-workspace-server",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"private": true,
"type": "module",
"bin": {
"google-workspace-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "node --max-old-space-size=4096 node_modules/typescript/bin/tsc && chmod +x build/index.js",
"deploy": "npm run build && npx dotenv -f .env -- sh -c 'scp build/index.js package.json package-lock.json .env \"$SSH_USER@$SSH_HOST:$SSH_PATH\" && ssh \"$SSH_USER@$SSH_HOST\" \"cd $SSH_PATH && npm install --omit=dev\"'",
"start": "npm run build && node build/index.js",
"clean": "rm -rf build",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"logs": "npx dotenv -f .env -- ssh $SSH_USER@$SSH_HOST 'tail -f $SSH_PATH/logs/app.log'"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@modelcontextprotocol/sdk": "0.6.0",
"googleapis": "^144.0.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"dotenv-cli": "^8.0.0",
"typescript": "^5.3.3"
}
}