-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.09 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.09 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@forwardemail/mcp-server",
"description": "Model Context Protocol (MCP) server for Forward Email. Connect AI to your inbox.",
"version": "1.0.5",
"author": "Forward Email LLC <support@forwardemail.net> (https://forwardemail.net)",
"bin": {
"mcp-server": "bin/mcp-server.js"
},
"bugs": {
"url": "https://github.com/forwardemail/mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"axios": "^1.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"c8": "^10.1.2",
"fixpack": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"xo": "^0.58.0"
},
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib/",
"bin/",
"README.md",
"LICENSE"
],
"homepage": "https://forwardemail.net/mcp",
"keywords": [
"ai",
"automation",
"chatgpt",
"claude",
"email",
"forward-email",
"llm",
"mcp",
"model-context-protocol"
],
"license": "BUSL-1.1",
"main": "lib/index.js",
"packageManager": "pnpm@9.0.0",
"prettier": {
"useTabs": false,
"tabWidth": 2,
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forwardemail/mcp-server.git"
},
"scripts": {
"lint": "fixpack && remark . -qfo && xo --fix",
"pre-commit": "lint-staged",
"prepare": "husky",
"pretest": "pnpm run lint",
"test": "c8 --reporter=text --reporter=html node --test"
},
"types": "lib/index.d.ts",
"xo": {
"space": 2,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"import-x/extensions": "off",
"n/prefer-global/process": "off",
"camelcase": [
"error",
{
"properties": "never"
}
]
}
}
}