@nauth-toolkit/email-nodemailer 0.1.133 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +25 -8
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @nauth-toolkit/email-nodemailer
2
2
 
3
- Nodemailer email provider for nauth-toolkit
3
+ Nodemailer email provider for [nauth-toolkit](https://nauth.dev).
4
4
 
5
- ## Preview Release Notice
5
+ Sends verification codes, magic links, password reset emails, and MFA notifications using Nodemailer. Works with any SMTP server, AWS SES, Gmail, or other Nodemailer-supported transports.
6
6
 
7
- **This is a preview release for internal testing. Do not use in production yet.**
7
+ Includes Handlebars-based email templates with file-based customization and global template variables.
8
8
 
9
- This package is part of nauth-toolkit and is currently in early access/preview. Features and APIs may change between releases. For production use, please wait for the stable v1.0 release.
9
+ **Docs:** [nauth.dev](https://nauth.dev) · **Examples:** [github.com/noorixorg/nauth](https://github.com/noorixorg/nauth) · **Live demo:** [demo.nauth.dev](https://demo.nauth.dev)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nauth-toolkit/email-nodemailer",
3
- "version": "0.1.133",
4
- "description": "Nodemailer email provider for nauth-toolkit",
3
+ "version": "0.2.0",
4
+ "description": "Nodemailer email provider for nauth-toolkit — SMTP, SES, Gmail",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [
@@ -11,7 +11,7 @@
11
11
  "README.md"
12
12
  ],
13
13
  "scripts": {
14
- "build": "npm run build-templates && tsc -b && npm run copy-templates",
14
+ "build": "pnpm run build-templates && tsc -b && pnpm run copy-templates",
15
15
  "build-templates": "node src/templates/mjml/build-templates.js",
16
16
  "copy-templates": "cp -r src/templates/default dist/templates/",
17
17
  "clean": "rm -rf dist *.tsbuildinfo",
@@ -26,7 +26,7 @@
26
26
  "nodemailer": "^7.0.11"
27
27
  },
28
28
  "peerDependencies": {
29
- "@nauth-toolkit/core": "^0.1.133"
29
+ "@nauth-toolkit/core": "^0.2.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/handlebars": "^4.1.0",
@@ -43,12 +43,29 @@
43
43
  "access": "public",
44
44
  "tag": "latest"
45
45
  },
46
- "license": "SEE LICENSE IN LICENSE",
46
+ "license": "SEE LICENSE",
47
47
  "keywords": [
48
- "nestjs",
48
+ "nauth",
49
49
  "authentication",
50
+ "auth",
51
+ "nodejs",
52
+ "typescript",
50
53
  "email",
51
54
  "nodemailer",
52
- "smtp"
53
- ]
55
+ "smtp",
56
+ "ses"
57
+ ],
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "https://github.com/noorixorg/nauth"
61
+ },
62
+ "homepage": "https://nauth.dev",
63
+ "exports": {
64
+ ".": {
65
+ "types": "./dist/index.d.ts",
66
+ "require": "./dist/index.js",
67
+ "default": "./dist/index.js"
68
+ }
69
+ },
70
+ "sideEffects": false
54
71
  }