@nauth-toolkit/sms-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 +24 -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/sms-console
2
2
 
3
- Console SMS provider for nauth-toolkit (dev/test)
3
+ Console SMS provider for [nauth-toolkit](https://nauth.dev).
4
4
 
5
- ## Preview Release Notice
5
+ Logs SMS content to the console instead of sending it. Use during development and testing to see verification codes and MFA one-time passwords without configuring a real SMS gateway.
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/sms-console",
3
- "version": "0.1.132",
4
- "description": "Console SMS provider for nauth-toolkit (dev/test)",
3
+ "version": "0.2.0",
4
+ "description": "Console SMS provider for nauth-toolkit — development and testing",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  "format:check": "prettier --check \"src/**/*.ts\""
15
15
  },
16
16
  "peerDependencies": {
17
- "@nauth-toolkit/core": "^0.1.132"
17
+ "@nauth-toolkit/core": "^0.2.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/jest": "^29.5.0",
@@ -30,17 +30,34 @@
30
30
  "access": "public",
31
31
  "tag": "latest"
32
32
  },
33
- "license": "UNLICENSED",
33
+ "license": "SEE LICENSE",
34
34
  "keywords": [
35
- "nestjs",
35
+ "nauth",
36
36
  "authentication",
37
+ "auth",
38
+ "nodejs",
39
+ "typescript",
37
40
  "sms",
38
41
  "console",
39
- "dev"
42
+ "development",
43
+ "testing"
40
44
  ],
41
45
  "files": [
42
46
  "dist",
43
47
  "LICENSE",
44
48
  "README.md"
45
- ]
49
+ ],
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://github.com/noorixorg/nauth"
53
+ },
54
+ "homepage": "https://nauth.dev",
55
+ "exports": {
56
+ ".": {
57
+ "types": "./dist/index.d.ts",
58
+ "require": "./dist/index.js",
59
+ "default": "./dist/index.js"
60
+ }
61
+ },
62
+ "sideEffects": false
46
63
  }