@nr1e/commons 0.3.1 → 0.3.2
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 +12 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,6 +5,18 @@
|
|
|
5
5
|
|
|
6
6
|
This project provides reusable components commonly needed in TypeScript projects.
|
|
7
7
|
|
|
8
|
+
| Module | Description |
|
|
9
|
+
| -------------------------- | --------------------------------------------------------------------------------------------- |
|
|
10
|
+
| `@nr1e/commons/bitsnbytes` | Base64 encoding/decoding utilities |
|
|
11
|
+
| `@nr1e/commons/encryption` | Cryptographic utilities including AES encryption and RSA encryption |
|
|
12
|
+
| `@nr1e/commons/errors` | Error handling utilities and custom error types |
|
|
13
|
+
| `@nr1e/commons/http` | HTTP status codes and HTTP method constants |
|
|
14
|
+
| `@nr1e/commons/ids` | ID generation utilities (UUID v4/v7, KSUID) |
|
|
15
|
+
| `@nr1e/commons/lang` | Language utilities for currency, datetime, equality, merge, sleep, string, and type functions |
|
|
16
|
+
| `@nr1e/commons/oauth` | OAuth 2.0 cryptographic functions (PKCE) |
|
|
17
|
+
| `@nr1e/commons/os` | Operating system utilities including environment variable helpers |
|
|
18
|
+
| `@nr1e/commons/validator` | Input validation utilities |
|
|
19
|
+
|
|
8
20
|
[github-url]: https://github.com/nr1etech/lib-js/actions
|
|
9
21
|
[github-image]: https://github.com/nr1etech/lib-js/workflows/ci/badge.svg
|
|
10
22
|
[npm-url]: https://npmjs.org/package/@nr1e/commons-js
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nr1e/commons",
|
|
3
3
|
"description": "Common utilities for TypeScript projects",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "NR1E, Inc.",
|
|
7
7
|
"publishConfig": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@eslint/js": "latest",
|
|
20
|
-
"@types/node": "^
|
|
20
|
+
"@types/node": "^25.0.10",
|
|
21
21
|
"@types/uuid": "^10.0.0",
|
|
22
|
-
"eslint": "9.
|
|
23
|
-
"prettier": "3.
|
|
22
|
+
"eslint": "9.39.2",
|
|
23
|
+
"prettier": "3.8.1",
|
|
24
24
|
"typescript": "5.4.5",
|
|
25
25
|
"typescript-eslint": "8.38.0",
|
|
26
26
|
"vitest": "4.0.6"
|