{
  "name": "md-to-react-email",
  "version": "5.0.2",
  "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": "0.0.7",
    "@types/jest": "29.5.2",
    "@types/react": "18.2.8",
    "jest": "29.5.0",
    "react": "18.2.0",
    "ts-jest": "29.1.0",
    "ts-node": "10.9.1",
    "tsup": "6.7.0",
    "typescript": "5.1.3"
  },
  "peerDependencies": {
    "react": "18.x"
  },
  "dependencies": {
    "marked": "7.0.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "lint": "tsc",
    "release": "pnpm run build && changeset publish",
    "test": "jest --coverage",
    "test:watch": "jest --watch"
  }
}