-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.18 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "agentmail-mcp",
"version": "0.2.2",
"description": "AgentMail MCP Server",
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"lint": "eslint .",
"prettier": "prettier --write ."
},
"keywords": [
"agentmail",
"mcp",
"server",
"tools"
],
"author": "AgentMail <support@agentmail.cc>",
"license": "MIT",
"homepage": "https://agentmail.to",
"repository": {
"type": "git",
"url": "git+https://github.com/agentmail-to/agentmail-mcp.git"
},
"packageManager": "pnpm@10.6.4",
"type": "module",
"files": [
"build"
],
"bin": {
"agentmail-mcp": "build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.1",
"agentmail": "^0.4.10",
"agentmail-toolkit": "^0.2.7"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/node": "^24.0.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.2.0",
"prettier": "3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
}
}