@nowarajs/totp 1.1.8 โ 1.1.10
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 +0 -1
- package/package.json +18 -13
package/README.md
CHANGED
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
- ๐ **Flexible Digits**: Support for 6-8 digit codes
|
|
37
37
|
- โฐ **Time Window**: Configurable time periods and verification windows
|
|
38
38
|
- ๐ฏ **Base32 Encoding**: Built-in Base32 encoding/decoding utilities
|
|
39
|
-
- ๐งช **Type Safe**: Full TypeScript support with comprehensive type definitions
|
|
40
39
|
|
|
41
40
|
## ๐ง Installation
|
|
42
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nowarajs/totp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"author": "NowaraJS",
|
|
5
5
|
"description": "A comprehensive Time-based One-Time Password (TOTP) and HMAC-based One-Time Password (HOTP)",
|
|
6
6
|
"type": "module",
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"test": "bun test --coverage"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@eslint/js": "^9.
|
|
26
|
-
"@nowarajs/error": "^1.3.
|
|
25
|
+
"@eslint/js": "^9.37.0",
|
|
26
|
+
"@nowarajs/error": "^1.3.5",
|
|
27
27
|
"@stylistic/eslint-plugin": "^5.4.0",
|
|
28
|
-
"@types/bun": "^1.
|
|
29
|
-
"eslint": "^9.
|
|
28
|
+
"@types/bun": "^1.3.0",
|
|
29
|
+
"eslint": "^9.37.0",
|
|
30
30
|
"globals": "^16.4.0",
|
|
31
|
-
"typescript-eslint": "^8.
|
|
32
|
-
"typescript": "^5.9.
|
|
31
|
+
"typescript-eslint": "^8.46.1",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@nowarajs/error": "^1.3.
|
|
35
|
+
"@nowarajs/error": "^1.3.5"
|
|
36
36
|
},
|
|
37
37
|
"exports": {
|
|
38
38
|
"./enums": "./dist/enums/index.js",
|
|
@@ -71,19 +71,24 @@
|
|
|
71
71
|
"semver": "patch"
|
|
72
72
|
},
|
|
73
73
|
"chore": {
|
|
74
|
-
"title": "๐ฆ Chore"
|
|
74
|
+
"title": "๐ฆ Chore",
|
|
75
|
+
"semver": "patch"
|
|
75
76
|
},
|
|
76
77
|
"examples": {
|
|
77
|
-
"title": "๐ Examples"
|
|
78
|
+
"title": "๐ Examples",
|
|
79
|
+
"semver": "patch"
|
|
78
80
|
},
|
|
79
81
|
"test": {
|
|
80
|
-
"title": "๐งช Tests"
|
|
82
|
+
"title": "๐งช Tests",
|
|
83
|
+
"semver": "patch"
|
|
81
84
|
},
|
|
82
85
|
"style": {
|
|
83
|
-
"title": "๐จ Styles"
|
|
86
|
+
"title": "๐จ Styles",
|
|
87
|
+
"semver": "patch"
|
|
84
88
|
},
|
|
85
89
|
"ci": {
|
|
86
|
-
"title": "๐ค CI"
|
|
90
|
+
"title": "๐ค CI",
|
|
91
|
+
"semver": "patch"
|
|
87
92
|
}
|
|
88
93
|
},
|
|
89
94
|
"templates": {
|