mirror of
https://github.com/resend/react-email.git
synced 2026-09-14 14:18:02 +08:00
27 lines
582 B
JSON
27 lines
582 B
JSON
{
|
|
"name": "react-email-with-sendgrid",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsdown src/index.tsx --format esm --target node20",
|
|
"dev": "tsdown src/index.tsx --format esm --target node20 --watch",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@sendgrid/mail": "7.7.0",
|
|
"react-email": "6.0.3",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "0.21.9",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|