Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
{
|
|
"name": "md-to-react-email",
|
|
"version": "5.0.5",
|
|
"description": "A simple Markdown to jsx parser for email templates written in typescript.",
|
|
"keywords": [
|
|
"markdown",
|
|
"react-email",
|
|
"jsx-email",
|
|
"md",
|
|
"email",
|
|
"jsx"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/codeskills-dev/md-to-react-email.git"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"author": {
|
|
"name": "Paul Ehikhuemen",
|
|
"url": "https://github.com/lordelogos",
|
|
"email": "paulehiks@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.26.2",
|
|
"@react-email/render": "1.0.3",
|
|
"@types/react": "19.0.0",
|
|
"@vitest/coverage-v8": "2.1.8",
|
|
"happy-dom": "^15.11.7",
|
|
"react": "18.2.0",
|
|
"ts-node": "10.9.1",
|
|
"tsup": "6.7.0",
|
|
"typescript": "5.1.3",
|
|
"vitest": "2.1.8"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0 || ^19.0"
|
|
},
|
|
"dependencies": {
|
|
"marked": "7.0.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "tsc",
|
|
"release": "pnpm run build && changeset publish",
|
|
"test": "vitest run --coverage",
|
|
"test:watch": "vitest"
|
|
}
|
|
} |