-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"name": "imap-mcp",
"description": "📧 An IMAP Model Context Protocol (MCP) server to expose IMAP operations as tools for AI assistants.",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"bin": {
"imap-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build && husky",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"watch": "tsc --watch",
"semantic-release": "semantic-release",
"format": "prettier --write src/.",
"format:check": "prettier --check src/."
},
"repository": {
"type": "git",
"url": "https://github.com/dominik1001/imap-mcp.git"
},
"bugs": {
"url": "https://github.com/dominik1001/imap-mcp/issues"
},
"homepage": "https://github.com/dominik1001/imap-mcp#readme",
"author": "Dominik Grusemann",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.1",
"dotenv": "^16.5.0",
"imap": "^0.8.19",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/imap": "^0.8.42",
"@eslint/js": "^9.29.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@types/node": "^24.0.4",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "3.6.1",
"semantic-release": "^24.2.5",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}