- Add /forgot-password and /reset-password routes (Dutch UI) - Wire sendResetPassword into emailAndPassword config (not a plugin) - Send styled HTML email via nodemailer with 1-hour expiry - Add 'Wachtwoord vergeten?' link on login page - Update routeTree.gen.ts with new routes
27 lines
459 B
JSON
27 lines
459 B
JSON
{
|
|
"name": "@kk/auth",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./*": {
|
|
"default": "./src/*.ts"
|
|
}
|
|
},
|
|
"scripts": {},
|
|
"dependencies": {
|
|
"@kk/db": "workspace:*",
|
|
"@kk/env": "workspace:*",
|
|
"better-auth": "catalog:",
|
|
"dotenv": "catalog:",
|
|
"nodemailer": "^8.0.2",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@kk/config": "workspace:*",
|
|
"@types/nodemailer": "^7.0.11",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|