UNPKG

@react-email/button

Version:

A link that is styled to look like a button

55 lines 1.25 kB
{ "name": "@react-email/button", "version": "0.2.0", "description": "A link that is styled to look like a button", "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", "repository": { "type": "git", "url": "https://github.com/resend/react-email.git", "directory": "packages/button" }, "keywords": [ "react", "email" ], "engines": { "node": ">=18.0.0" }, "peerDependencies": { "react": "^18.0 || ^19.0 || ^19.0.0-rc" }, "devDependencies": { "typescript": "5.8.3", "@react-email/render": "1.1.3", "tsconfig": "0.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts --external react", "build:watch": "tsup src/index.ts --format esm,cjs --dts --external react --watch", "clean": "rm -rf dist", "test": "vitest run", "test:watch": "vitest" } }