UNPKG

@upyo/smtp

Version:

SMTP transport for Upyo email library

74 lines 1.97 kB
{ "name": "@upyo/smtp", "version": "0.3.1", "description": "SMTP transport for Upyo email library", "keywords": [ "email", "mail", "sendmail", "smtp" ], "license": "MIT", "author": { "name": "Hong Minhee", "email": "hong@minhee.org", "url": "https://hongminhee.org/" }, "homepage": "https://upyo.org/transports/smtp", "repository": { "type": "git", "url": "git+https://github.com/dahlia/upyo.git", "directory": "packages/smtp/" }, "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", "mailpit:start": "docker run -d --name upyo-mailpit -p 1025:1025 -p 8025:8025 axllent/mailpit:latest", "mailpit:stop": "docker stop upyo-mailpit && docker rm upyo-mailpit", "mailpit:logs": "docker logs upyo-mailpit", "dev:mailpit": "docker run --rm -p 1025:1025 -p 8025:8025 axllent/mailpit:latest" } }