cloudflare-email-mailchannels
Version:
Send emails via Mailchannels on Cloudflare Workers.
48 lines • 1.18 kB
JSON
{
"name": "cloudflare-email-mailchannels",
"description": "Send emails via Mailchannels on Cloudflare Workers.",
"version": "0.1.0",
"author": "JacobLinCool <jacoblincool@gmail.com> (https://jacoblin.cool)",
"license": "MIT",
"keywords": [
"cloudflare",
"workers",
"email",
"serverless",
"cloudflare-workers",
"email-handling",
"email-service",
"developer-tools",
"mailchannels"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"debug": "^4.3.4",
"mimetext": "^3.0.24"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@types/debug": "^4.1.12",
"tsup": "^8.0.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"wrangler": "^3.28.2"
},
"repository": {
"type": "git",
"url": "https://github.com/JacobLinCool/cloudflare-email-kit.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/cloudflare-email-kit/issues"
},
"homepage": "https://jacoblincool.github.io/cloudflare-email-kit",
"scripts": {
"build": "tsup",
"build:docs": "typedoc --out docs src"
}
}