@arcblock/vc 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 +17 -18
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 Verifiable Credentials (VC) to DID Protocol
8
8
 
9
9
  ## Usage
10
10
 
11
11
  ```terminal
12
- yarn add @arcblock/vc
12
+ pnpm install @arcblock/vc
13
13
  ```
14
14
 
15
15
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/vc",
3
- "version": "1.20.1",
3
+ "version": "1.20.3",
4
4
  "description": "Javascript lib to work with ArcBlock Verifiable Credentials",
5
5
  "keywords": [
6
6
  "arcblock",
@@ -32,29 +32,28 @@
32
32
  "type": "git",
33
33
  "url": "git+https://github.com/ArcBlock/blockchain.git"
34
34
  },
35
+ "bugs": {
36
+ "url": "https://github.com/ArcBlock/blockchain/issues"
37
+ },
38
+ "dependencies": {
39
+ "debug": "^4.3.6",
40
+ "is-absolute-url": "^3.0.3",
41
+ "json-stable-stringify": "^1.0.1",
42
+ "lodash": "^4.17.21",
43
+ "@arcblock/did": "1.20.3",
44
+ "@ocap/mcrypto": "1.20.3",
45
+ "@ocap/util": "1.20.3",
46
+ "@ocap/wallet": "1.20.3"
47
+ },
35
48
  "scripts": {
36
49
  "lint": "eslint tests lib",
37
50
  "lint:fix": "eslint --fix tests lib",
38
- "docs": "yarn gen-dts && yarn gen-docs && yarn cleanup-docs && yarn format-docs",
51
+ "docs": "pnpm run gen-dts && pnpm run gen-docs && pnpm run cleanup-docs && pnpm run format-docs",
39
52
  "cleanup-docs": "node ../../scripts/cleanup-docs.js docs/README.md $npm_package_name",
40
53
  "gen-docs": "jsdoc2md lib/index.js > docs/README.md",
41
54
  "gen-dts": "j2d lib/index.js",
42
55
  "format-docs": "remark . -o",
43
56
  "test": "jest --forceExit --detectOpenHandles",
44
57
  "coverage": "npm run test -- --coverage"
45
- },
46
- "bugs": {
47
- "url": "https://github.com/ArcBlock/blockchain/issues"
48
- },
49
- "dependencies": {
50
- "@arcblock/did": "1.20.1",
51
- "@ocap/mcrypto": "1.20.1",
52
- "@ocap/util": "1.20.1",
53
- "@ocap/wallet": "1.20.1",
54
- "debug": "^4.3.6",
55
- "is-absolute-url": "^3.0.3",
56
- "json-stable-stringify": "^1.0.1",
57
- "lodash": "^4.17.21"
58
- },
59
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
60
- }
58
+ }
59
+ }