-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.57 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
{
"name": "fastmail-mcp",
"version": "0.5.0",
"description": "MCP server for Fastmail — Cloudflare Workers edition",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy:prod": "wrangler deploy --minify",
"build:apps": "INPUT=apps/read-email.html vite build -c vite.apps.config.ts && INPUT=apps/compose.html vite build -c vite.apps.config.ts",
"typecheck": "tsc --noEmit",
"lint": "oxlint src",
"lint:fix": "oxlint --fix src",
"fmt": "oxfmt --write src",
"fmt:check": "oxfmt --check src",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm typecheck && pnpm lint && pnpm fmt:check && pnpm test",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"prepare": "lefthook install"
},
"keywords": [
"mcp",
"fastmail",
"jmap",
"email"
],
"author": "Ilnur Khalilov <i@khl.lv>",
"license": "MIT",
"dependencies": {
"@hono/mcp": "^0.2.4",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-trace-base": "^2.6.1",
"@opentelemetry/semantic-conventions": "^1.40.0",
"cheerio": "^1.2.0",
"hono": "^4.12.10",
"zod": "^3.23.8"
},
"devDependencies": {
"lefthook": "^2.1.0",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"typescript": "^6.0.0",
"vite": "^8.0.0",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.18",
"wrangler": "^4.80.0"
}
}