@arcblock/nft-template 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.
- package/README.md +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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
|
> Javascript library to manipulate Verifiable Credentials (VC) to DID Protocol
|
|
8
8
|
>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
```terminal
|
|
14
|
-
|
|
14
|
+
pnpm install @arcblock/vc
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
```javascript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/nft-template",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.3",
|
|
4
4
|
"description": "Javascript lib to work with ArcBlock NFT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"arcblock",
|
|
@@ -32,23 +32,23 @@
|
|
|
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
|
+
"pako": "^1.0.11",
|
|
40
|
+
"@ocap/util": "1.20.3"
|
|
41
|
+
},
|
|
42
|
+
"gitHead": "554c17ccece77a1abc528348bee7f9e75865d918",
|
|
35
43
|
"scripts": {
|
|
36
44
|
"lint": "eslint tests lib",
|
|
37
45
|
"lint:fix": "eslint --fix tests lib",
|
|
38
|
-
"docs": "
|
|
46
|
+
"docs": "pnpm run gen-dts && pnpm run gen-docs && pnpm run cleanup-docs && pnpm run format-docs",
|
|
39
47
|
"cleanup-docs": "node ../../scripts/cleanup-docs.js docs/README.md $npm_package_name",
|
|
40
48
|
"gen-docs": "jsdoc2md lib/index.js > docs/README.md",
|
|
41
49
|
"gen-dts": "j2d lib/index.js",
|
|
42
50
|
"format-docs": "remark . -o",
|
|
43
51
|
"test": "jest --forceExit --detectOpenHandles",
|
|
44
52
|
"coverage": "npm run test -- --coverage"
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
48
|
-
},
|
|
49
|
-
"dependencies": {
|
|
50
|
-
"@ocap/util": "1.20.2",
|
|
51
|
-
"pako": "^1.0.11"
|
|
52
|
-
},
|
|
53
|
-
"gitHead": "70ddd9b43070605879fed7dff50a9f19f5325ea8"
|
|
54
|
-
}
|
|
53
|
+
}
|
|
54
|
+
}
|