package.json•923 B
{
"name": "mcp-smtp-server",
"version": "1.0.0",
"description": "SMTP Email MCP Server with template management",
"main": "build/index.js",
"type": "module",
"bin": {
"mcp-smtp-server": "build/index.js",
"mcp-smtp-server-smithery": "scripts/start-smithery.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"watch": "tsc --watch",
"prepare": "npm run build",
"dev": "npm run build && npm start",
"smithery:publish": "./scripts/publish-to-smithery.sh",
"smithery:api-publish": "node scripts/smithery-api-publish.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.2",
"nodemailer": "^6.10.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.8.2",
"@types/nodemailer": "^6.4.13",
"typescript": "^5.2.2"
}
}