cybertoken 2.1.0 → 2.1.1

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 +5 -0
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -24,6 +24,11 @@ Install:
24
24
  npm install cybertoken
25
25
  ```
26
26
 
27
+ Also available on JSR:
28
+ ```sh
29
+ npx jsr add @cybertoken/cybertoken
30
+ ```
31
+
27
32
  ```js
28
33
  import { createTokenGenerator } from "cybertoken";
29
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cybertoken",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "A token format for APIs inspired by the GitHub's API token format.",
5
5
  "author": "Niklas Mollenhauer",
6
6
  "license": "ISC",
@@ -30,17 +30,17 @@
30
30
  "generator"
31
31
  ],
32
32
  "dependencies": {
33
- "base-x": "^4.0.0"
33
+ "base-x": "^5.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@biomejs/biome": "^1.5.3",
37
- "@types/node": "^20.10.5",
38
- "@vitest/coverage-v8": "^1.1.0",
39
- "rimraf": "^5.0.5",
40
- "typedoc": "^0.25.4",
41
- "vitest": "^1.1.0"
36
+ "@biomejs/biome": "^1.9.4",
37
+ "@types/node": "^22.10.10",
38
+ "@vitest/coverage-v8": "^3.0.4",
39
+ "rimraf": "^6.0.1",
40
+ "typedoc": "^0.27.6",
41
+ "vitest": "^3.0.4"
42
42
  },
43
43
  "engines": {
44
- "node": ">=20.0.0"
44
+ "node": ">=20"
45
45
  }
46
46
  }