@ivan_a_souza/solid-id 0.0.10 → 0.0.12
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 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -99,7 +99,7 @@ Returns a `ParsedSolidId` object with internal details:
|
|
|
99
99
|
| --------- | ---- | ------------------------------------------------------- |
|
|
100
100
|
| Timestamp | 48 | Time in milliseconds since 1985-05-17 |
|
|
101
101
|
| Entropy | 64 | Random bits generated with `crypto.getRandomValues` |
|
|
102
|
-
| Checksum | 16 |
|
|
102
|
+
| Checksum | 16 | Integrity verification using the CRC-16-CCITT algorithm |
|
|
103
103
|
| Total | 128 | Encoded in 22 Base62 characters |
|
|
104
104
|
|
|
105
105
|
---
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivan_a_souza/solid-id",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "**SOLID ID** (Sortable, Ordered, Legible, Indexed, Distributed) is a unique identifier generator in TypeScript that produces compact, lexicographically ordered, and secure IDs for distributed use.",
|
|
6
6
|
"main": "dist/solid-id.cjs",
|
|
7
|
-
"module": "dist/solid-id.
|
|
7
|
+
"module": "dist/solid-id.js",
|
|
8
8
|
"types": "dist/solid-id.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/solid-id.d.ts",
|
|
12
|
-
"import": "./dist/solid-id.
|
|
12
|
+
"import": "./dist/solid-id.js",
|
|
13
13
|
"require": "./dist/solid-id.cjs"
|
|
14
14
|
}
|
|
15
15
|
},
|