-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "messageoperator",
"version": "0.6.0",
"description": "Message Operator: a local MCP server that presents mailboxes as a small computer (macOS, MCPB)",
"type": "module",
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/dealfluence/messageoperator.git"
},
"bugs": {
"url": "https://github.com/dealfluence/messageoperator/issues"
},
"homepage": "https://github.com/dealfluence/messageoperator#readme",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node build.mjs",
"typecheck": "tsc --noEmit && tsc -p ui",
"test": "vitest run && npm run test:ingest && npm run test:mail",
"test:ingest": "node --experimental-sqlite --test \"ingest/test/*.test.mjs\"",
"pack:mcpb": "npm run build && mcpb pack bundle messageoperator.mcpb",
"test:mail": "uv run python -m unittest discover -s test -p \"test_mail_py.py\"",
"prepare": "husky",
"lint": "eslint .",
"format": "prettier --write ."
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,mjs,cjs,json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@adeu/core": "^1.31.0",
"@azure/msal-node": "^5.4.0",
"@modelcontextprotocol/ext-apps": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.12.0",
"imapflow": "^1.0.171",
"mailparser": "^3.7.2",
"nodemailer": "^9.0.3",
"pdf-parse": "^1.1.4",
"xlsx": "file:vendor/xlsx-0.20.3.tgz",
"zod": "^3.24.1"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^1.0.0",
"@eslint/js": "^9.39.4",
"@types/mailparser": "^3.4.5",
"@types/node": "^22.10.0",
"@types/nodemailer": "^6.4.17",
"@types/pdf-parse": "^1.1.5",
"esbuild": "^0.28.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"fflate": "^0.8.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.9.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}