Files
klz-cables.com/.pnpm-store/v10/files/c4/f6634e82833643bc76a63de1725274a7ed7125f9fe2eb3206bfca1a5038057a0ecc7e3ec88c69bb7fa70c6348162aea93d690a80e644f39992352b94846cea
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

48 lines
1.1 KiB
Plaintext

{
"name": "@react-email/code-inline",
"version": "0.0.5",
"description": "Display a predictable inline code HTML element that works on all email clients",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.0 || ^19.0 || ^19.0.0-rc"
},
"devDependencies": {
"tsup": "7.2.0",
"typescript": "5.1.6",
"vitest": "1.1.0",
"@react-email/render": "1.0.3",
"eslint-config-custom": "0.0.0",
"tsconfig": "0.0.0"
},
"scripts": {
"dev": "pnpm build --watch",
"clean": "rm -rf dist",
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"lint": "eslint ."
}
}