-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 888 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 888 Bytes
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
{
"name": "resend-mcp",
"version": "2.2.0",
"license": "MIT",
"type": "module",
"bin": {
"resend-mcp": "dist/index.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/sdk": "1.26.0",
"dotenv": "17.3.1",
"express": "5.2.1",
"minimist": "1.2.8",
"resend": "6.9.3",
"zod": "4.3.6"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/minimist": "1.2.5",
"@types/node": "25.0.3",
"typescript": "5.9.3",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.30.0"
}