@ckb-ccc/ssri 0.3.0 → 0.3.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,21 @@
1
1
  # @ckb-ccc/ssri
2
2
 
3
+ ## 0.3.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
+
13
+ ## 0.3.1
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`98597b5`](https://github.com/ckb-devrel/ccc/commit/98597b56eb6eeb029b72ea963649155dfe1f4215), [`bef9d0a`](https://github.com/ckb-devrel/ccc/commit/bef9d0a037fba045eab24d7ad55400fa26fbbffd), [`8067a08`](https://github.com/ckb-devrel/ccc/commit/8067a08de041ffd7a624adea0b594eb283e2634e), [`7019a1a`](https://github.com/ckb-devrel/ccc/commit/7019a1a7f765dfa7940cdfe51474bcd347f18ec6), [`9beee4d`](https://github.com/ckb-devrel/ccc/commit/9beee4d7f39e4b4b19919c5feb86e1c8be0e089d), [`2d4e701`](https://github.com/ckb-devrel/ccc/commit/2d4e701e54e9bf5247c2363490009acc5606c0ea), [`0eb8435`](https://github.com/ckb-devrel/ccc/commit/0eb8435d9694602fce3b7e6a95f04f793452a88d)]:
17
+ - @ckb-ccc/core@1.15.0
18
+
3
19
  ## 0.3.0
4
20
  ### Minor Changes
5
21
 
package/README.md CHANGED
@@ -49,6 +49,8 @@ If you are looking for UDT support, please refer directly to [@ckb-ccc/udt](http
49
49
  - [`ssri-server`](https://github.com/ckb-devrel/ssri-server): Server for calling SSRI methods.
50
50
  - [`ckb_ssri_sdk`](https://github.com/ckb-devrel/ckb_ssri_sdk): A toolkit to help developers build SSRI-Compliant scripts on CKB with production level example script `pausable-udt` for reference.
51
51
 
52
+ Check the [package documentation](https://docs.ckbccc.com/docs/packages/protocol-sdks/ssri) and [API reference](https://api.ckbccc.com/modules/_ckb-ccc_ssri.ssri) for more details.
53
+
52
54
  <h3 align="center">
53
55
  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>.
54
56
  </h3>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/ssri",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "SSRI",
5
5
  "author": "Alive24 <xct24@live.com>",
6
6
  "license": "MIT",
@@ -31,6 +31,7 @@
31
31
  "eslint-plugin-prettier": "^5.5.6",
32
32
  "prettier": "^3.8.4",
33
33
  "prettier-plugin-organize-imports": "^4.3.0",
34
+ "tsdown": "^0.22.3",
34
35
  "typescript": "^6.0.3",
35
36
  "typescript-eslint": "^8.61.1"
36
37
  },
@@ -38,14 +39,13 @@
38
39
  "access": "public"
39
40
  },
40
41
  "dependencies": {
41
- "tsdown": "^0.22.3",
42
- "@ckb-ccc/core": "1.14.0"
42
+ "@ckb-ccc/core": "1.16.0"
43
43
  },
44
44
  "types": "./dist.commonjs/index.d.ts",
45
45
  "scripts": {
46
46
  "test": "jest",
47
47
  "build": "tsdown",
48
- "lint": "eslint ./src",
48
+ "lint": "tsc --noEmit && eslint ./src",
49
49
  "format": "prettier --write . && eslint --fix ./src"
50
50
  }
51
51
  }