37 lines
1,014 B
JSON
Executable file
37 lines
1,014 B
JSON
Executable file
{
|
|
"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.1.11",
|
|
"@nestjs/config": "^4.0.2",
|
|
"@nestjs/event-emitter": "^3.0.1",
|
|
"@nestjs/swagger": "^11.2.3",
|
|
"@nestjs/typeorm": "^11.0.0",
|
|
"imap": "^0.8.19",
|
|
"mailparser": "^3.6.0",
|
|
"typeorm": "^0.3.17"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/testing": "^11.1.11",
|
|
"@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"
|
|
}
|
|
}
|