-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.53 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
{
"name": "mcp-mailtrap",
"version": "0.7.0",
"mcpName": "io.mailtrap/mcp",
"description": "Official MCP Server for Mailtrap",
"license": "MIT",
"author": "Railsware Products Studio LLC",
"homepage": "https://mailtrap.io",
"repository": "https://github.com/mailtrap/mailtrap-mcp",
"bugs": "https://github.com/mailtrap/mailtrap-mcp/issues",
"bin": {
"mcp-mailtrap-server": "dist/index.js",
"mcp-mailtrap": "dist/index.js"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.20.1",
"yarn": ">=1.22.17"
},
"scripts": {
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "npx eslint . --ext .js,.ts",
"lint:tsc": "tsc -p . --noEmit --incremental false",
"build": "shx rm -rf dist && tsc --project tsconfig.build.json",
"prepublish": "npm run build && shx chmod +x dist/index.js",
"dev": "npx @modelcontextprotocol/inspector node dist/index.js",
"dev:mcpb": "npx @modelcontextprotocol/inspector node dist/index.js",
"mcp:cli": "npx @modelcontextprotocol/inspector --cli node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"mcpb:pack": "npm run build && npx @anthropic-ai/mcpb pack . mailtrap-mcp.mcpb",
"mcpb:sign": "npx @anthropic-ai/mcpb sign mailtrap-mcp.mcpb",
"mcpb:info": "npx @anthropic-ai/mcpb info mailtrap-mcp.mcpb"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"dotenv": "^16.4.7",
"mailsplit": "^5.4.6",
"mailtrap": "^4.8.0",
"zod": "^3.24.2"
},
"overrides": {
"@typescript-eslint/typescript-estree": {
"minimatch": {
".": "9.0.7",
"brace-expansion": "5.0.8"
}
},
"@hono/node-server": "2.0.11",
"tmp": "0.2.7"
},
"resolutions": {
"@typescript-eslint/typescript-estree/minimatch": "9.0.7",
"@hono/node-server": "2.0.11",
"tmp": "0.2.7"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@modelcontextprotocol/inspector": "^0.16.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.13.13",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}