@talosjs/mailer 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@talosjs/mailer",
3
+ "version": "1.0.0",
4
+ "module": "./dist/index.js",
5
+ "dependencies": {
6
+ "@talosjs/app-env": "^1.12.0",
7
+ "@talosjs/container": "^1.5.1",
8
+ "@talosjs/exception": "^1.2.10",
9
+ "@talosjs/http-status": "^1.1.11",
10
+ "@talosjs/translation": "^1.2.0",
11
+ "resend": "^6.4.2"
12
+ },
13
+ "exports": {
14
+ ".": {
15
+ "import": {
16
+ "types": "./dist/index.d.ts",
17
+ "default": "./dist/index.js"
18
+ }
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "description": "Transactional email service supporting Nodemailer SMTP and Resend API — send templated emails with attachments and delivery tracking",
23
+ "files": [
24
+ "dist",
25
+ "LICENSE",
26
+ "README.md",
27
+ "package.json"
28
+ ],
29
+ "keywords": [
30
+ "bun",
31
+ "email",
32
+ "mail",
33
+ "mailer",
34
+ "nodemailer",
35
+ "talos",
36
+ "resend",
37
+ "smtp",
38
+ "typescript"
39
+ ],
40
+ "license": "MIT",
41
+ "scripts": {
42
+ "test": "bun test tests",
43
+ "build": "bunup",
44
+ "lint": "tsgo --noEmit && bunx biome lint",
45
+ "npm:publish": "bun publish --tolerate-republish --force --production --access public"
46
+ },
47
+ "type": "module",
48
+ "types": "./dist/index.d.ts"
49
+ }