2024-03-28 22:32:46 +01:00
|
|
|
{
|
2024-03-29 16:22:04 +01:00
|
|
|
"name": "@cohabit/cohamail",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"exports": {
|
|
|
|
".": "./mod.ts",
|
|
|
|
"cli": "./cli.ts",
|
|
|
|
"types": "./types.ts"
|
|
|
|
},
|
2024-03-28 22:32:46 +01:00
|
|
|
"tasks": {
|
2024-04-15 10:46:45 +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/cohamail --target=x86_64-unknown-linux-gnu ./cli.ts",
|
2024-04-11 16:50:23 +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
|
|
|
"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": {
|
|
|
|
"@cliffy/": "https://deno.land/x/cliffy@v1.0.0-rc.3/",
|
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"
|
|
|
|
}
|
|
|
|
}
|