@arcblock/nft-template 1.28.6 → 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/lib/index.js +0 -2
  3. package/package.json +16 -18
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  ## Usage
12
12
 
13
13
  ```terminal
14
- pnpm install @arcblock/vc
14
+ bun install @arcblock/vc
15
15
  ```
16
16
 
17
17
  ```javascript
package/lib/index.js CHANGED
@@ -1,5 +1,3 @@
1
- /* eslint-disable no-use-before-define */
2
- /* eslint-disable max-len */
3
1
  /**
4
2
  * @fileOverview Utility functions to create NFT svg
5
3
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcblock/nft-template",
3
- "version": "1.28.6",
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.6"
41
- },
42
- "gitHead": "554c17ccece77a1abc528348bee7f9e75865d918",
43
33
  "scripts": {
44
- "lint": "eslint tests lib",
45
- "lint:fix": "eslint --fix tests lib",
46
- "docs": "pnpm run gen-dts && pnpm run gen-docs && pnpm run cleanup-docs && pnpm run format-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": "jest --forceExit --detectOpenHandles",
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
+ }