-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "google-mcp",
"module": "index.ts",
"version": "0.0.7",
"type": "module",
"description": "Google MCP tools for calendar, drive, gmail etc...",
"license": "MIT",
"author": "Dhruv Vakharwala",
"repository": {
"type": "git",
"url": "git+https://github.com/vakharwalad23/google-mcp.git"
},
"keywords": [
"google",
"mcp",
"calendar",
"drive",
"gmail",
"cursor",
"claude"
],
"bin": {
"google-mcp": "./index.ts"
},
"scripts": {
"build": "bun build index.ts --outfile=dist/index.js --target=node --minify",
"dev": "bun run index.ts",
"dev:http": "MCP_TRANSPORT=http PORT=3000 bun run index.ts",
"dev:stdio": "MCP_TRANSPORT=stdio bun run index.ts",
"start:http": "MCP_TRANSPORT=http bun run index.ts",
"start:stdio": "MCP_TRANSPORT=stdio bun run index.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.2.21",
"@types/mime-types": "^3.0.1"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"googleapis": "^159.0.0",
"mime-types": "^3.0.1",
"open": "^10.2.0"
}
}