@arcblock/did-ext 1.20.2 → 1.20.4
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.
- package/README.md +2 -2
- package/package.json +17 -18
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/prettier/prettier)
|
|
4
4
|
[](https://docs.arcblock.io)
|
|
5
|
-
[](https://gitter.im/ArcBlock/community?utm_source=badge
|
|
5
|
+
[](https://gitter.im/ArcBlock/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
6
6
|
|
|
7
7
|
> Extensions to work with ArcBlock DID
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
11
|
```terminal
|
|
12
|
-
|
|
12
|
+
pnpm install @arcblock/did-ext
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
```javascript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/did-ext",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.4",
|
|
4
4
|
"description": "Extension to work with ArcBlock DID",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"arcblock",
|
|
@@ -31,29 +31,28 @@
|
|
|
31
31
|
"type": "git",
|
|
32
32
|
"url": "git+https://github.com/ArcBlock/blockchain.git"
|
|
33
33
|
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@wangshijun/hdkey": "^2.0.5",
|
|
39
|
+
"bn.js": "^5.2.1",
|
|
40
|
+
"debug": "^4.3.6",
|
|
41
|
+
"lodash": "^4.17.21",
|
|
42
|
+
"@arcblock/did": "1.20.4",
|
|
43
|
+
"@ocap/mcrypto": "1.20.4",
|
|
44
|
+
"@ocap/util": "1.20.4",
|
|
45
|
+
"@ocap/wallet": "1.20.4"
|
|
46
|
+
},
|
|
34
47
|
"scripts": {
|
|
35
48
|
"lint": "eslint tests lib",
|
|
36
49
|
"lint:fix": "eslint --fix tests lib",
|
|
37
|
-
"docs": "
|
|
50
|
+
"docs": "pnpm run gen-dts && pnpm run gen-docs && pnpm run cleanup-docs && pnpm run format-docs",
|
|
38
51
|
"cleanup-docs": "node ../../scripts/cleanup-docs.js docs/README.md $npm_package_name",
|
|
39
52
|
"gen-docs": "jsdoc2md lib/index.js > docs/README.md",
|
|
40
53
|
"gen-dts": "j2d lib/index.js",
|
|
41
54
|
"format-docs": "remark . -o",
|
|
42
55
|
"test": "jest --forceExit --detectOpenHandles",
|
|
43
56
|
"coverage": "npm run test -- --coverage"
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
47
|
-
},
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"@arcblock/did": "1.20.2",
|
|
50
|
-
"@ocap/mcrypto": "1.20.2",
|
|
51
|
-
"@ocap/util": "1.20.2",
|
|
52
|
-
"@ocap/wallet": "1.20.2",
|
|
53
|
-
"@wangshijun/hdkey": "^2.0.5",
|
|
54
|
-
"bn.js": "^5.2.1",
|
|
55
|
-
"debug": "^4.3.6",
|
|
56
|
-
"lodash": "^4.17.21"
|
|
57
|
-
},
|
|
58
|
-
"gitHead": "70ddd9b43070605879fed7dff50a9f19f5325ea8"
|
|
59
|
-
}
|
|
57
|
+
}
|
|
58
|
+
}
|