@nauth-toolkit/email-console 0.1.132 → 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 (3) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +3 -5
  3. package/package.json +17 -7
package/LICENSE CHANGED
@@ -1,5 +1,6 @@
1
1
  NAUTH TOOLKIT EARLY ACCESS LICENSE
2
2
  Version 1.0 (December 2025)
3
+ Full license: https://nauth.dev/docs/license
3
4
 
4
5
  ================================================================================
5
6
  FUTURE OPEN SOURCE NOTICE
package/README.md CHANGED
@@ -1,9 +1,7 @@
1
1
  # @nauth-toolkit/email-console
2
2
 
3
- Console email provider for nauth-toolkit (dev/test)
3
+ Console email provider for [nauth-toolkit](https://nauth.dev).
4
4
 
5
- ## Preview Release Notice
5
+ Logs email content to the console instead of sending it. Use during development and testing to see verification codes, magic links, and password reset emails without configuring a real email service.
6
6
 
7
- **This is a preview release for internal testing. Do not use in production yet.**
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.
7
+ **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-console",
3
- "version": "0.1.132",
4
- "description": "Console email provider for nauth-toolkit (dev/test)",
3
+ "version": "0.2.0",
4
+ "description": "Console email provider for nauth-toolkit — development and testing",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {},
29
29
  "peerDependencies": {
30
- "@nauth-toolkit/core": "^0.1.132"
30
+ "@nauth-toolkit/core": "^0.2.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/jest": "^29.5.0",
@@ -43,12 +43,22 @@
43
43
  "access": "public",
44
44
  "tag": "latest"
45
45
  },
46
- "license": "UNLICENSED",
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
  "console",
52
- "dev"
53
- ]
55
+ "development",
56
+ "testing"
57
+ ],
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "https://github.com/noorixorg/nauth"
61
+ },
62
+ "homepage": "https://nauth.dev",
63
+ "sideEffects": false
54
64
  }