@ckb-ccc/ssri 0.3.1 → 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 +10 -0
- package/README.md +2 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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
|
+
|
|
3
13
|
## 0.3.1
|
|
4
14
|
### Patch Changes
|
|
5
15
|
|
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.
|
|
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
|
-
"
|
|
42
|
-
"@ckb-ccc/core": "1.15.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
|
}
|