mailer/deno.json

35 lines
1.2 KiB
JSON
Raw Normal View History

2024-03-28 22:32:46 +01:00
{
2024-03-29 16:22:04 +01:00
"name": "@cohabit/cohamail",
2024-06-17 12:12:18 +02:00
"version": "0.2.1",
2024-03-29 16:22:04 +01:00
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts",
"./types": "./types.ts",
"./templates": "./templates/mod.ts"
2024-03-29 16:22:04 +01:00
},
2024-03-28 22:32:46 +01:00
"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/cohamail --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",
2024-03-28 22:32:46 +01:00
"utils:scp": "scp -O -P 55555 -i C:/Users/Julien/.ssh/id_ed25519_cohabit -r $(pwd) julien@cohabit.fr:/home/julien/cohabit_mail"
},
"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",
"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"
}
}