@upyo/plunk
Version:
Plunk transport for Upyo email library
70 lines • 1.66 kB
JSON
{
"name": "@upyo/plunk",
"version": "0.3.1",
"description": "Plunk transport for Upyo email library",
"keywords": [
"email",
"mail",
"sendmail",
"plunk"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://upyo.org/transports/plunk",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/upyo.git",
"directory": "packages/plunk/"
},
"bugs": {
"url": "https://github.com/dahlia/upyo/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0",
"deno": ">=2.3.0"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"peerDependencies": {
"@upyo/core": "0.3.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.47.3",
"tsdown": "^0.12.7",
"typescript": "5.8.3"
},
"scripts": {
"build": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && dotenvx run --ignore=MISSING_ENV_FILE -- node --experimental-transform-types --test",
"test:bun": "tsdown && bun test --timeout=30000 --env-file=.env",
"test:deno": "deno test --allow-env --allow-net --env-file=.env"
}
}