@ckb-ccc/uni-sat 1.1.1 → 1.1.2

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,15 @@
1
1
  # @ckb-ccc/uni-sat
2
2
 
3
+ ## 1.1.2
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [`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))
9
+
10
+ - 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)]:
11
+ - @ckb-ccc/core@1.16.0
12
+
3
13
  ## 1.1.1
4
14
  ### Patch Changes
5
15
 
package/README.md CHANGED
@@ -36,15 +36,7 @@
36
36
  Fully enabling CKB's Turing completeness and cryptographic freedom power.
37
37
  </p>
38
38
 
39
- ## Preview
40
-
41
- <p align="center">
42
- <a href="https://app.ckbccc.com/">
43
- <img src="https://raw.githubusercontent.com/ckb-devrel/ccc/master/assets/preview.png" width="30%" />
44
- </a>
45
- </p>
46
-
47
- This project is still under active development, and we are looking forward to your feedback. [Try its demo now here](https://app.ckbccc.com/). It showcases how to use CCC for some basic scenarios in CKB.
39
+ Check the [package documentation](https://docs.ckbccc.com/docs/packages/wallet-integrations/uni-sat) and [API reference](https://api.ckbccc.com/modules/_ckb-ccc_uni-sat.index) for more details.
48
40
 
49
41
  <h3 align="center">
50
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>.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/uni-sat",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "CCC - CKBer's Codebase. Common Chains Connector's support for UniSat",
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
  },
@@ -46,13 +47,12 @@
46
47
  "access": "public"
47
48
  },
48
49
  "dependencies": {
49
- "tsdown": "^0.22.3",
50
- "@ckb-ccc/core": "1.15.0"
50
+ "@ckb-ccc/core": "1.16.0"
51
51
  },
52
52
  "types": "./dist.commonjs/index.d.ts",
53
53
  "scripts": {
54
54
  "build": "tsdown",
55
- "lint": "eslint ./src",
55
+ "lint": "tsc --noEmit && eslint ./src",
56
56
  "format": "prettier --write . && eslint --fix ./src"
57
57
  }
58
58
  }