Files
probo/packages/emails/package.json
Sacha Al Himdani 127b78cace Migrate emails to the unified react-email package
Replace the deprecated @react-email/components dependency (and its
deprecated sub-packages) with the unified react-email package per the
React Email 6 migration, updating all component and render imports across
the email templates from "@react-email/components" to "react-email".

This removes the npm deprecation warnings emitted by the old
@react-email/* packages while keeping the template build output
unchanged.

Signed-off-by: Sacha Al Himdani <sacha@probo.com>
2026-06-17 17:41:46 +02:00

23 lines
467 B
JSON

{
"name": "@probo/emails",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "email dev --dir src --port 3003",
"build": "tsx scripts/build.ts",
"export": "email export"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-email": "^6.6.3"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/react": "^19.0.6",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
}
}