-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 909 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
40
41
42
43
{
"name": "thunderbird-mcp",
"version": "0.7.5",
"description": "MCP server for Thunderbird - enables AI assistants to access email, contacts, and calendars",
"author": "Tomasz Kasperczyk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TKasperczyk/thunderbird-mcp"
},
"keywords": [
"mcp",
"thunderbird",
"email",
"ai",
"claude"
],
"bin": {
"thunderbird-mcp": "./mcp-bridge.cjs"
},
"files": [
"mcp-bridge.cjs",
"extension/",
"scripts/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --test test/*.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"eslint-plugin-n": "^18.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.5.0"
}
}