@ocap/merkle-tree 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 +1 -1
  2. package/package.json +10 -11
package/README.md CHANGED
@@ -5,7 +5,7 @@ Create or validate config object for ocap server
5
5
  ## Usage
6
6
 
7
7
  ```shell
8
- yarn add @ocap/config
8
+ pnpm install @ocap/config
9
9
  ```
10
10
 
11
11
  Then:
package/package.json CHANGED
@@ -3,18 +3,12 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.20.1",
6
+ "version": "1.20.3",
7
7
  "description": "Merkle tree implementation that powers DID Rollup",
8
8
  "main": "lib/index.js",
9
9
  "files": [
10
10
  "lib"
11
11
  ],
12
- "scripts": {
13
- "lint": "eslint tests lib",
14
- "lint:fix": "eslint --fix tests lib",
15
- "test": "jest --forceExit --detectOpenHandles",
16
- "coverage": "npm run test -- --coverage"
17
- },
18
12
  "keywords": [],
19
13
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
14
  "license": "MIT",
@@ -23,8 +17,13 @@
23
17
  "web3-utils": "^1.8.0"
24
18
  },
25
19
  "dependencies": {
26
- "@ocap/mcrypto": "1.20.1",
27
- "@ocap/util": "1.20.1"
20
+ "@ocap/mcrypto": "1.20.3",
21
+ "@ocap/util": "1.20.3"
28
22
  },
29
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
30
- }
23
+ "scripts": {
24
+ "lint": "eslint tests lib",
25
+ "lint:fix": "eslint --fix tests lib",
26
+ "test": "jest --forceExit --detectOpenHandles",
27
+ "coverage": "npm run test -- --coverage"
28
+ }
29
+ }