@ckb-ccc/joy-id 1.1.1 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @ckb-ccc/joy-id
2
2
 
3
+ ## 1.1.3
4
+ ### Patch Changes
5
+
6
+ - Updated dependencies [[`48fbea0`](https://github.com/ckb-devrel/ccc/commit/48fbea094a64587fa2bd265d5c4e0a61d5a5e28b)]:
7
+ - @ckb-ccc/core@1.16.1
8
+
9
+ ## 1.1.2
10
+ ### Patch Changes
11
+
12
+
13
+
14
+ - [`b9cc002`](https://github.com/ckb-devrel/ccc/commit/b9cc0027121a5a857f13727965ce688440d2a61f) Thanks [@Hanssen0](https://github.com/Hanssen0)! - chore: move tsdown to devDependencies (PR: [#422](https://github.com/ckb-devrel/ccc/issues/422))
15
+
16
+ - Updated dependencies [[`209f332`](https://github.com/ckb-devrel/ccc/commit/209f3322ffc22860b1ad43f31cbf51322493b3d9), [`ac8dba2`](https://github.com/ckb-devrel/ccc/commit/ac8dba21ab899b707e46236aa40b9e12566f9c8a), [`52309a4`](https://github.com/ckb-devrel/ccc/commit/52309a442a48f1c376fa65813ba56bcceb405b90)]:
17
+ - @ckb-ccc/core@1.16.0
18
+
3
19
  ## 1.1.1
4
20
  ### Patch Changes
5
21
 
package/README.md CHANGED
@@ -36,6 +36,8 @@
36
36
  Fully enabling CKB's Turing completeness and cryptographic freedom power.
37
37
  </p>
38
38
 
39
+ Check the [package documentation](https://docs.ckbccc.com/docs/packages/wallet-integrations/joy-id) and [API reference](https://api.ckbccc.com/modules/_ckb-ccc_joy-id.index) for more details.
40
+
39
41
  <h3 align="center">
40
42
  Read more about CCC on <a href="https://docs.ckbccc.com">our website</a> or <a href="https://github.com/ckb-devrel/ccc">GitHub Repo</a>.
41
43
  </h3>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/joy-id",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Connector's support for JoyID",
5
5
  "author": "Hanssen0 <hanssen0@hanssen0.com>",
6
6
  "license": "MIT",
@@ -39,6 +39,7 @@
39
39
  "eslint-plugin-prettier": "^5.5.6",
40
40
  "prettier": "^3.8.4",
41
41
  "prettier-plugin-organize-imports": "^4.3.0",
42
+ "tsdown": "^0.22.3",
42
43
  "typescript": "^6.0.3",
43
44
  "typescript-eslint": "^8.61.1"
44
45
  },
@@ -48,13 +49,12 @@
48
49
  "dependencies": {
49
50
  "@joyid/ckb": "^1.1.4",
50
51
  "@joyid/common": "^0.2.2",
51
- "tsdown": "^0.22.3",
52
- "@ckb-ccc/core": "1.15.0"
52
+ "@ckb-ccc/core": "1.16.1"
53
53
  },
54
54
  "types": "./dist.commonjs/index.d.ts",
55
55
  "scripts": {
56
56
  "build": "tsdown",
57
- "lint": "eslint ./src",
57
+ "lint": "tsc --noEmit && eslint ./src",
58
58
  "format": "prettier --write . && eslint --fix ./src"
59
59
  }
60
60
  }