@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.
Files changed (2) hide show
  1. package/README.md +2 -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.23 or newer.
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 20 or newer. It works in browsers, too.
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.6.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": ">=20"
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": "^11.0.3"
33
+ "uuid": "^13.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@eslint/compat": "^1.2.6",
37
- "@eslint/js": "^9.16.0",
38
- "@types/eslint__js": "^8.42.3",
39
- "@types/uuid": "^10.0.0",
40
- "@vitest/coverage-v8": "^3.0.6",
41
- "eslint": "^9.19.0",
42
- "eslint-config-prettier": "^10.0.1",
43
- "globals": "^15.14.0",
44
- "npm-check-updates": "^17.1.14",
45
- "prettier": "^3.4.2",
46
- "typescript": "^5.7.3",
47
- "typescript-eslint": "^8.22.0",
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
  }