otplib 13.0.0 → 13.0.1
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/README.md +1 -3
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# otplib
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TypeScript-first implementation of HOTP/TOTP with automatic crypto backend detection for optimal performance across Node.js, browsers, and edge environments.
|
|
3
|
+
TypeScript-first library for HOTP and TOTP / Authenticator with multi-runtime and plugin support
|
|
6
4
|
|
|
7
5
|
## Breaking Changes (v13)
|
|
8
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "otplib",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1",
|
|
4
4
|
"description": "TypeScript-first library for TOTP and HOTP with multi-runtime and plugin support",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Gerald Yeo <support@yeojz.dev>",
|
|
@@ -49,19 +49,19 @@
|
|
|
49
49
|
"LICENSE"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@otplib/core": "13.0.
|
|
53
|
-
"@otplib/
|
|
54
|
-
"@otplib/
|
|
55
|
-
"@otplib/
|
|
56
|
-
"@otplib/plugin-crypto-noble": "13.0.
|
|
57
|
-
"@otplib/plugin-base32-scure": "13.0.
|
|
52
|
+
"@otplib/core": "13.0.1",
|
|
53
|
+
"@otplib/hotp": "13.0.1",
|
|
54
|
+
"@otplib/totp": "13.0.1",
|
|
55
|
+
"@otplib/uri": "13.0.1",
|
|
56
|
+
"@otplib/plugin-crypto-noble": "13.0.1",
|
|
57
|
+
"@otplib/plugin-base32-scure": "13.0.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"tsup": "^8.0.1",
|
|
61
61
|
"typescript": "^5.3.3",
|
|
62
62
|
"vitest": "^4.0.16",
|
|
63
|
-
"@otplib/plugin-crypto-noble": "13.0.
|
|
64
|
-
"@repo/testing": "13.0.
|
|
63
|
+
"@otplib/plugin-crypto-noble": "13.0.1",
|
|
64
|
+
"@repo/testing": "13.0.1"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|