stack/packages/stack-emails/package.json
Konstantin Wohlwend 0def869ee7
Some checks failed
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
Docker Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Test / docker (push) Has been cancelled
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
Dev Environment Test / test (push) Has been cancelled
Run setup tests / test (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
chore: update package versions
2025-02-27 10:50:41 -08:00

71 lines
1.6 KiB
JSON

{
"name": "@stackframe/stack-emails",
"version": "2.7.20",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": true,
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist && rimraf node_modules",
"dev": "tsc -w --preserveWatchOutput --declarationMap",
"lint": "eslint --ext .tsx,.ts ."
},
"files": [
"README.md",
"dist",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dist/*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"peerDependencies": {
"react": ">=18.2 || >=19.0.0-rc.0",
"react-dom": ">=18.2 || >=19.0.0-rc.0",
"yup": "^1.4.0",
"@types/react": ">=18.2.66 || >=19.0.0-rc.0",
"@types/react-dom": ">=18.2.66 || >=19.0.0-rc.0",
"next": ">=14.1.0 || >=15.0.0-rc.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"react": {
"optional": true
},
"yup": {
"optional": true
}
},
"dependencies": {
"react-email": "2.1.0",
"@react-email/components": "^0.0.14",
"@react-email/render": "^0.0.12",
"lucide-react": "^0.378.0",
"react-colorful": "^5.6.1",
"zustand": "^4.5.2",
"zod": "^3.23.8",
"handlebars": "^4.7.8",
"@stackframe/stack-shared": "workspace:*",
"@stackframe/stack-ui": "workspace:*"
},
"devDependencies": {
"rimraf": "^5.0.5",
"react": "^18.2",
"react-dom": "^18.2",
"next": "^14.1.0"
}
}