@arcblock/did 1.20.1 → 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 +2 -2
  2. package/package.json +13 -14
package/README.md CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
4
4
  [![docs](https://img.shields.io/badge/powered%20by-arcblock-green.svg)](https://docs.arcblock.io)
5
- [![Gitter](https://badges.gitter.im/ArcBlock/community.svg)](https://gitter.im/ArcBlock/community?utm_source=badge\&utm_medium=badge\&utm_campaign=pr-badge)
5
+ [![Gitter](https://badges.gitter.im/ArcBlock/community.svg)](https://gitter.im/ArcBlock/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
6
6
 
7
7
  > Javascript library to manipulate ArcBlock DID: <https://github.com/ArcBlock/abt-did-spec>
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```terminal
12
- yarn add @ocap/mcrypto @arcblock/did
12
+ pnpm install @ocap/mcrypto @arcblock/did
13
13
  ```
14
14
 
15
15
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/did",
3
- "version": "1.20.1",
3
+ "version": "1.20.3",
4
4
  "description": "Javascript lib to work with ArcBlock DID",
5
5
  "keywords": [
6
6
  "arcblock",
@@ -41,6 +41,16 @@
41
41
  "type": "git",
42
42
  "url": "git+https://github.com/ArcBlock/blockchain.git"
43
43
  },
44
+ "bugs": {
45
+ "url": "https://github.com/ArcBlock/blockchain/issues"
46
+ },
47
+ "dependencies": {
48
+ "bn.js": "^5.2.1",
49
+ "debug": "^4.3.6",
50
+ "lodash": "^4.17.21",
51
+ "@ocap/mcrypto": "1.20.3",
52
+ "@ocap/util": "1.20.3"
53
+ },
44
54
  "scripts": {
45
55
  "lint": "eslint src tests",
46
56
  "lint:fix": "npm run lint -- --fix",
@@ -52,16 +62,5 @@
52
62
  "build:esm": "tsc -p tsconfig.esm.json",
53
63
  "build": "npm run build:cjs && npm run build:esm",
54
64
  "build:watch": "npm run build -- -w"
55
- },
56
- "bugs": {
57
- "url": "https://github.com/ArcBlock/blockchain/issues"
58
- },
59
- "dependencies": {
60
- "@ocap/mcrypto": "1.20.1",
61
- "@ocap/util": "1.20.1",
62
- "bn.js": "^5.2.1",
63
- "debug": "^4.3.6",
64
- "lodash": "^4.17.21"
65
- },
66
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
67
- }
65
+ }
66
+ }