platform-codebase/features/email/plugin-messaging/package.json
Quinn Ftw 0b89ac87f1 feat(email): enhance plugin-messaging with improved email handling
Major improvements to the email plugin-messaging module:
- Refactor inbound email processing with better error handling
- Update message creator service for improved message parsing
- Enhance message listener service for outbound handling
- Update module configuration and dependencies
- Add comprehensive test coverage for all services
- Update architecture documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 21:14:01 -08:00

37 lines
1,011 B
JSON

{
"name": "@lilith/email-messaging-plugin",
"version": "1.0.0",
"description": "Email ↔ Messages gateway plugin - bidirectional message sync with threading support",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"dependencies": {
"@lilith/types": "workspace:*",
"@nestjs/common": "^11.0.0",
"@nestjs/config": "^3.3.0",
"@nestjs/event-emitter": "^2.0.4",
"@nestjs/swagger": "^8.0.0",
"@nestjs/typeorm": "^10.0.0",
"imap": "^0.8.19",
"mailparser": "^3.6.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@nestjs/testing": "^11.0.0",
"@types/imap": "^0.8.40",
"@types/jest": "^29.5.0",
"@types/mailparser": "^3.4.4",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
}
}