@nauth-toolkit/sms-aws-sns 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.
- package/LICENSE +1 -0
- package/README.md +3 -5
- package/package.json +23 -6
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# @nauth-toolkit/sms-aws-sns
|
|
2
2
|
|
|
3
|
-
AWS SNS SMS provider for nauth-toolkit
|
|
3
|
+
AWS SNS SMS provider for [nauth-toolkit](https://nauth.dev).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Sends SMS verification codes and MFA one-time passwords through Amazon SNS. Plug in your AWS credentials and nauth-toolkit handles message formatting and delivery.
|
|
6
6
|
|
|
7
|
-
**
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nauth-toolkit/sms-aws-sns",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "AWS SNS SMS provider for nauth-toolkit",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@aws-sdk/client-sns": "^3.0.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@nauth-toolkit/core": "^0.
|
|
21
|
+
"@nauth-toolkit/core": "^0.2.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/jest": "^29.5.0",
|
|
@@ -34,17 +34,34 @@
|
|
|
34
34
|
"access": "public",
|
|
35
35
|
"tag": "latest"
|
|
36
36
|
},
|
|
37
|
-
"license": "
|
|
37
|
+
"license": "SEE LICENSE",
|
|
38
38
|
"keywords": [
|
|
39
|
-
"
|
|
39
|
+
"nauth",
|
|
40
40
|
"authentication",
|
|
41
|
+
"auth",
|
|
42
|
+
"nodejs",
|
|
43
|
+
"typescript",
|
|
41
44
|
"sms",
|
|
42
45
|
"aws",
|
|
43
|
-
"sns"
|
|
46
|
+
"sns",
|
|
47
|
+
"phone-verification"
|
|
44
48
|
],
|
|
45
49
|
"files": [
|
|
46
50
|
"dist",
|
|
47
51
|
"LICENSE",
|
|
48
52
|
"README.md"
|
|
49
|
-
]
|
|
53
|
+
],
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/noorixorg/nauth"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://nauth.dev",
|
|
59
|
+
"exports": {
|
|
60
|
+
".": {
|
|
61
|
+
"types": "./dist/index.d.ts",
|
|
62
|
+
"require": "./dist/index.js",
|
|
63
|
+
"default": "./dist/index.js"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"sideEffects": false
|
|
50
67
|
}
|