47822 collided with ClaudeDo.Worker.exe on at least one user's machine. 37849 is high, registered to nobody, and avoids the prior conflict. Both the Node port and the .NET port move together (still wire-compatible). Defaults change only — if a user has a custom port in mailbox.json, that stays.
57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "@kuns/claude-mailbox",
|
|
"version": "1.2.0",
|
|
"description": "Standalone MCP mail server that lets parallel Claude sessions coordinate with each other.",
|
|
"type": "module",
|
|
"bin": {
|
|
"claude-mailbox": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"pretest": "npm run build",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"start": "node dist/cli.js serve",
|
|
"prepack": "npm run build"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"better-sqlite3": "^11.3.0",
|
|
"commander": "^12.1.0",
|
|
"fastify": "^5.0.0",
|
|
"zod": "^3.25.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"node-windows": "^1.0.0-beta.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.11",
|
|
"@types/node": "^22.7.4",
|
|
"typescript": "^5.6.2",
|
|
"vitest": "^2.1.1"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"claude",
|
|
"mailbox",
|
|
"ipc"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.kuns.dev/releases/ClaudeMailbox.git"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://git.kuns.dev/api/packages/releases/npm/"
|
|
}
|
|
}
|