Files
novu/libs/maily-render/package.json

80 lines
1.8 KiB
JSON

{
"name": "@novu/maily-render",
"version": "0.1.3-novu.8-render",
"private": true,
"description": "A transformer that converts Maily content into HTML email templates.",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"dev": "tsup --watch",
"clean": "rm -rf dist",
"build": "tsup",
"lint": "biome lint .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test:watch": "vitest",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arikchakma/maily.to.git",
"directory": "packages/render"
},
"author": "Arik Chakma <arikchangma@gmail.com>",
"keywords": [
"maily.to",
"react",
"email"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@antfu/utils": "^0.7.10",
"@babel/preset-react": "^7.25.9",
"@novu/maily-tsconfig": "workspace:*",
"@tiptap/core": "^2.11.5",
"@types/react": "^19.2.8",
"happy-dom": "^20.0.11",
"tsup": "^8.1.0",
"typescript": "5.6.2",
"vite": "^5.4.21",
"vitest": "^2.1.3"
},
"dependencies": {
"@react-email/components": "^0.5.1",
"@react-email/render": "^1.2.1",
"juice": "^11.0.1",
"node-html-parser": "^7.0.1"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0 || ^19.0.0-0",
"react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}