-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 842 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 842 Bytes
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
{
"name": "gmail-api",
"version": "1.0.0",
"description": "Programmable Email Assistant",
"main": "index.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
},
"type": "module",
"bin": {
"weather": "./build/index.js"
},
"files": [
"build"
],
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"express": "^4.21.2",
"googleapis": "^144.0.0",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}