2024-03-28 22:32:46 +01:00
|
|
|
{
|
2024-07-15 12:19:37 +02:00
|
|
|
"name": "@cohabit/mailer",
|
2024-06-17 12:12:18 +02:00
|
|
|
"version": "0.2.1",
|
2024-03-29 16:22:04 +01:00
|
|
|
"exports": {
|
|
|
|
".": "./mod.ts",
|
2024-06-15 17:26:39 +02:00
|
|
|
"./cli": "./cli.ts",
|
2024-06-17 11:02:49 +02:00
|
|
|
"./types": "./types.ts",
|
|
|
|
"./templates": "./templates/mod.ts"
|
2024-03-29 16:22:04 +01:00
|
|
|
},
|
2024-03-28 22:32:46 +01:00
|
|
|
"tasks": {
|
2024-07-15 12:19:37 +02:00
|
|
|
"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",
|
2024-07-15 12:11:55 +02:00
|
|
|
"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"
|
2024-03-28 22:32:46 +01:00
|
|
|
},
|
|
|
|
"fmt": {
|
|
|
|
"singleQuote": true,
|
|
|
|
"semiColons": false,
|
|
|
|
"useTabs": true
|
|
|
|
},
|
|
|
|
"imports": {
|
2024-07-15 12:10:57 +02:00
|
|
|
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.5",
|
|
|
|
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.5",
|
2024-04-03 17:56:38 +02:00
|
|
|
"@std/path": "jsr:@std/path@^0.221.0",
|
2024-03-28 22:32:46 +01:00
|
|
|
"jsx-email": "npm:jsx-email@^1.10.12",
|
|
|
|
"nodemailer": "npm:nodemailer@^6.9.13",
|
|
|
|
"nodemailer-smime": "npm:nodemailer-smime@^1.1.0",
|
2024-03-29 16:02:26 +01:00
|
|
|
"preact": "npm:preact@^10.20.1",
|
|
|
|
"turndown": "npm:turndown@^7.1.3"
|
2024-03-28 22:32:46 +01:00
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact"
|
|
|
|
}
|
|
|
|
}
|