@tozd/identifier 0.6.0 → 0.7.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/README.md +2 -2
- package/package.json +15 -19
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ You can add it to your project using `go get`:
|
|
|
25
25
|
go get gitlab.com/tozd/identifier
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
It requires Go 1.
|
|
28
|
+
It requires Go 1.24 or newer.
|
|
29
29
|
|
|
30
30
|
### TypeScript/JavaScript installation
|
|
31
31
|
|
|
@@ -35,7 +35,7 @@ You can add it to your project using `npm`:
|
|
|
35
35
|
npm install --save @tozd/identifer
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
It requires node
|
|
38
|
+
It requires node 22 or newer. It works in browsers, too.
|
|
39
39
|
|
|
40
40
|
## Usage
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tozd/identifier",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Readable global identifiers.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=22"
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -30,27 +30,23 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"bs58": "^6.0.0",
|
|
33
|
-
"uuid": "^
|
|
33
|
+
"uuid": "^13.0.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@eslint/compat": "^1.
|
|
37
|
-
"@eslint/js": "^9.
|
|
38
|
-
"@
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"typescript": "^
|
|
47
|
-
"
|
|
48
|
-
"vitest": "^3.0.6"
|
|
36
|
+
"@eslint/compat": "^1.4.0",
|
|
37
|
+
"@eslint/js": "^9.37.0",
|
|
38
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
39
|
+
"eslint": "^9.37.0",
|
|
40
|
+
"eslint-config-prettier": "^10.1.8",
|
|
41
|
+
"globals": "^16.4.0",
|
|
42
|
+
"npm-check-updates": "^19.0.0",
|
|
43
|
+
"prettier": "^3.6.2",
|
|
44
|
+
"prettier-plugin-organize-imports": "^4.3.0",
|
|
45
|
+
"typescript": "^5.9.3",
|
|
46
|
+
"typescript-eslint": "^8.46.0",
|
|
47
|
+
"vitest": "^3.2.4"
|
|
49
48
|
},
|
|
50
49
|
"publishConfig": {
|
|
51
50
|
"access": "public"
|
|
52
|
-
},
|
|
53
|
-
"overrides": {
|
|
54
|
-
"esbuild": "0.25.0"
|
|
55
51
|
}
|
|
56
52
|
}
|