-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "resend-mcp",
"version": "2.20.0",
"license": "MIT",
"type": "module",
"bin": {
"resend-mcp": "dist/index.js"
},
"main": "dist/server.js",
"types": "dist/server.d.ts",
"exports": {
".": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
},
"./http": {
"types": "./dist/transports/http.d.ts",
"default": "./dist/transports/http.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"prepare": "npm run build",
"inspector": "npx @modelcontextprotocol/inspector@latest",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/express": "2.0.0",
"@modelcontextprotocol/node": "2.0.0",
"@modelcontextprotocol/server": "2.0.0",
"dotenv": "17.4.2",
"express": "5.2.1",
"minimist": "1.2.8",
"resend": "6.27.0",
"zod": "4.4.3"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@biomejs/biome": "2.5.13",
"@modelcontextprotocol/client": "2.0.0",
"@types/minimist": "1.2.5",
"@types/node": "25.9.1",
"typescript": "5.9.3",
"vitest": "4.1.7"
},
"packageManager": "pnpm@11.2.2",
"repository": {
"type": "git",
"url": "https://github.com/resend/resend-mcp"
}
}