34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "@cohabit/mailer",
|
|
"version": "0.2.1",
|
|
"exports": {
|
|
".": "./mod.ts",
|
|
"./cli": "./cli.ts",
|
|
"./types": "./types.ts",
|
|
"./templates": "./templates/mod.ts"
|
|
},
|
|
"tasks": {
|
|
"compile": "deno compile --allow-read --allow-env --allow-net=0.0.0.0 --allow-sys=osRelease,networkInterfaces --allow-run=/usr/sbin/sendmail,whoami --output=bin/mailer --target=x86_64-unknown-linux-gnu ./cli.ts",
|
|
"cli": "deno run --allow-read --allow-env --allow-net=0.0.0.0 --allow-sys=osRelease,networkInterfaces --allow-run=/usr/sbin/sendmail,whoami ./cli.ts"
|
|
},
|
|
"fmt": {
|
|
"singleQuote": true,
|
|
"semiColons": false,
|
|
"useTabs": true
|
|
},
|
|
"imports": {
|
|
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.5",
|
|
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.5",
|
|
"@std/path": "jsr:@std/path@^0.221.0",
|
|
"jsx-email": "npm:jsx-email@^1.10.12",
|
|
"nodemailer": "npm:nodemailer@^6.9.13",
|
|
"nodemailer-smime": "npm:nodemailer-smime@^1.1.0",
|
|
"preact": "npm:preact@^10.20.1",
|
|
"turndown": "npm:turndown@^7.1.3"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
}
|
|
}
|