forked from ArtyMcLabin/Gmail-MCP-Server
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 3.49 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@klodr/gmail-mcp",
"version": "1.2.1",
"description": "Gmail MCP server — scope-gated tools + attachment/download path jails + supply-chain hardening. Fork of GongRzhe/Gmail-MCP-Server via ArtyMcLabin's intermediate fork.",
"type": "module",
"main": "dist/index.js",
"bin": {
"gmail-mcp": "./dist/index.js"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && tsup",
"start": "node dist/index.js",
"auth": "node dist/index.js auth",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src \"**/*.{json,jsonc,json5}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm run build",
"version": "node scripts/sync-version.mjs && git add server.json src/server.ts",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#dist\"",
"lint:spell": "cspell --no-progress --dot --gitignore --config cspell.config.yaml \"**/*.md\""
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"gmail",
"mcp",
"model-context-protocol",
"mcp-server",
"ai",
"llm",
"agent-tools",
"oauth",
"google-gmail",
"claude",
"cursor",
"typescript",
"nodejs"
],
"author": "klodr",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/klodr/gmail-mcp.git"
},
"bugs": {
"url": "https://github.com/klodr/gmail-mcp/issues"
},
"homepage": "https://github.com/klodr/gmail-mcp#readme",
"funding": "https://github.com/sponsors/klodr",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.22.2"
},
"packageManager": "npm@10.9.7",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"email-addresses": "^5.0.0",
"google-auth-library": "^10.6.2",
"googleapis": "^171.4.0",
"nodemailer": "^8.0.7",
"open": "^11.0.0",
"zod": "^4.4.2"
},
"devDependencies": {
"@codecov/bundle-analyzer": "^2.0.1",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.17",
"@types/nodemailer": "^8.0.0",
"@vitest/coverage-v8": "^4.1.5",
"cspell": "^10.0.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-promise": "^7.3.0",
"eslint-plugin-unicorn": "^64.0.0",
"fast-check": "^4.7.0",
"gaxios": "^7.1.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"lockfile-lint": "^5.0.0",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5",
"yaml-lint": "^1.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"overrides": {
"fast-uri": "3.1.2"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs,mts}": [
"prettier --write",
"eslint --max-warnings=0 --no-warn-ignored"
],
"*.{json,jsonc,json5}": [
"prettier --write",
"eslint --max-warnings=0 --no-warn-ignored"
],
"*.{yml,yaml}": [
"prettier --write",
"yamllint"
],
"*.md": [
"prettier --write",
"markdownlint-cli2",
"cspell --no-progress --dot --gitignore --config cspell.config.yaml --no-must-find-files"
]
}
}