Files
mailer/deno.json
Juergen Kunz d7f37afc30
Some checks failed
CI / Type Check & Lint (push) Failing after 34s
CI / Build Test (Current Platform) (push) Failing after 38s
Publish to npm / npm-publish (push) Failing after 59s
CI / Build All Platforms (push) Successful in 2m2s
Release / build-and-release (push) Successful in 2m4s
1.2.1
2025-10-24 10:00:25 +00:00

54 lines
1.4 KiB
JSON

{
"name": "@serve.zone/mailer",
"version": "1.2.1",
"exports": "./mod.ts",
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run --allow-all mod.ts",
"compile": "deno task compile:all",
"compile:all": "bash scripts/compile-all.sh",
"test": "deno test --allow-all test/",
"test:watch": "deno test --allow-all --watch test/",
"check": "deno check mod.ts",
"fmt": "deno fmt",
"lint": "deno lint"
},
"lint": {
"rules": {
"tags": [
"recommended"
]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true
},
"compilerOptions": {
"lib": [
"deno.window"
],
"strict": true
},
"imports": {
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/fmt": "jsr:@std/fmt@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/http": "jsr:@std/http@^1.0.0",
"@std/crypto": "jsr:@std/crypto@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@apiclient.xyz/cloudflare": "npm:@apiclient.xyz/cloudflare@latest",
"@push.rocks/smartfile": "npm:@push.rocks/smartfile@latest",
"@push.rocks/smartdns": "npm:@push.rocks/smartdns@latest",
"@push.rocks/smartmail": "npm:@push.rocks/smartmail@^2.0.0",
"@tsclass/tsclass": "npm:@tsclass/tsclass@latest",
"lru-cache": "npm:lru-cache@^11.0.0",
"mailauth": "npm:mailauth@^4.0.0",
"uuid": "npm:uuid@^9.0.0",
"ip": "npm:ip@^2.0.0"
}
}