@arcblock/nft-template 1.28.5 → 1.28.7
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 +1 -1
- package/lib/index.js +0 -2
- package/package.json +16 -18
package/README.md
CHANGED
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcblock/nft-template",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.7",
|
|
4
4
|
"description": "Javascript lib to work with ArcBlock NFT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"arcblock",
|
|
@@ -25,30 +25,28 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"lib"
|
|
27
27
|
],
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"jest": "^29.7.0"
|
|
30
|
-
},
|
|
28
|
+
"devDependencies": {},
|
|
31
29
|
"repository": {
|
|
32
30
|
"type": "git",
|
|
33
31
|
"url": "git+https://github.com/ArcBlock/blockchain.git"
|
|
34
32
|
},
|
|
35
|
-
"bugs": {
|
|
36
|
-
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"pako": "^1.0.11",
|
|
40
|
-
"@ocap/util": "1.28.5"
|
|
41
|
-
},
|
|
42
|
-
"gitHead": "554c17ccece77a1abc528348bee7f9e75865d918",
|
|
43
33
|
"scripts": {
|
|
44
|
-
"lint": "
|
|
45
|
-
"lint:fix": "
|
|
46
|
-
"docs": "
|
|
34
|
+
"lint": "biome check",
|
|
35
|
+
"lint:fix": "biome check --write",
|
|
36
|
+
"docs": "bun run gen-dts && bun run gen-docs && bun run cleanup-docs && bun run format-docs",
|
|
47
37
|
"cleanup-docs": "node ../../scripts/cleanup-docs.js docs/README.md $npm_package_name",
|
|
48
38
|
"gen-docs": "jsdoc2md lib/index.js > docs/README.md",
|
|
49
39
|
"gen-dts": "j2d lib/index.js",
|
|
50
40
|
"format-docs": "remark . -o",
|
|
51
|
-
"test": "
|
|
41
|
+
"test": "bun test",
|
|
52
42
|
"coverage": "npm run test -- --coverage"
|
|
53
|
-
}
|
|
54
|
-
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/ArcBlock/blockchain/issues"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@ocap/util": "1.28.7",
|
|
49
|
+
"pako": "^1.0.11"
|
|
50
|
+
},
|
|
51
|
+
"gitHead": "554c17ccece77a1abc528348bee7f9e75865d918"
|
|
52
|
+
}
|