@arcblock/jwt 1.20.2 → 1.20.3

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 +1 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -25,7 +25,7 @@ This library aims to ease the process of handling `Did-Auth` process between dif
25
25
  ```sh
26
26
  npm install @arcblock/jwt
27
27
  // or
28
- yarn add @arcblock/jwt
28
+ pnpm install @arcblock/jwt
29
29
  ```
30
30
 
31
31
  ## Usage
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcblock/jwt",
3
3
  "description": "JSON Web Token variant for arcblock DID solutions",
4
- "version": "1.20.2",
4
+ "version": "1.20.3",
5
5
  "author": {
6
6
  "name": "wangshijun",
7
7
  "email": "shijun@arcblock.io",
@@ -18,12 +18,13 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@arcblock/did": "1.20.2",
22
- "@ocap/mcrypto": "1.20.2",
23
- "@ocap/util": "1.20.2",
24
21
  "debug": "^4.3.6",
25
22
  "json-stable-stringify": "^1.0.1",
26
- "semver": "^7.6.3"
23
+ "semver": "^7.6.3",
24
+ "@arcblock/did": "1.20.3",
25
+ "@ocap/mcrypto": "1.20.3",
26
+ "@ocap/util": "1.20.3",
27
+ "@ocap/wallet": "1.20.3"
27
28
  },
28
29
  "devDependencies": {
29
30
  "@arcblock/eslint-config-ts": "0.3.3",
@@ -55,6 +56,7 @@
55
56
  "type": "git",
56
57
  "url": "https://github.com/ArcBlock/blockchain/tree/master/did/jwt"
57
58
  },
59
+ "gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e",
58
60
  "scripts": {
59
61
  "lint": "eslint src tests",
60
62
  "lint:fix": "eslint src tests --fix",
@@ -66,6 +68,5 @@
66
68
  "build:cjs": "tsc -p tsconfig.cjs.json",
67
69
  "build:esm": "tsc -p tsconfig.esm.json",
68
70
  "build": "npm run build:cjs && npm run build:esm"
69
- },
70
- "gitHead": "70ddd9b43070605879fed7dff50a9f19f5325ea8"
71
- }
71
+ }
72
+ }