28 lines
591 B
JSON
28 lines
591 B
JSON
{
|
|
"name": "@album/email",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./queue": "./src/queue.ts",
|
|
"./webhooks": "./src/webhooks.ts"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --noEmit",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@album/contracts": "workspace:*",
|
|
"@album/database": "workspace:*",
|
|
"drizzle-orm": "^0.45.2",
|
|
"nodemailer": "^9.0.3",
|
|
"resend": "^6.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/nodemailer": "^8.0.1",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|