koishi-plugin-codec-tools 1.0.2 → 1.0.4
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/package.json +2 -2
- package/readme.md +2 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koishi-plugin-codec-tools",
|
|
3
|
-
"description": "
|
|
4
|
-
"version": "1.0.
|
|
3
|
+
"description": "编码&解码 URL/Base64/Unicode 和条形码/二维码的 Koishi 插件",
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
7
7
|
"files": [
|
package/readme.md
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
## 项目介绍 (Project Introduction)
|
|
4
4
|
|
|
5
5
|
### 中文
|
|
6
|
-
这是一个为 Koishi
|
|
6
|
+
这是一个为 Koishi 聊天机器人框架开发的编解码工具插件。该插件具有以下特点:
|
|
7
7
|
- 支持 URL 编码/解码
|
|
8
8
|
- 支持 Base64 编码/解码
|
|
9
9
|
- 支持 Unicode 编码/解码
|
|
10
10
|
- 支持从图片中解析二维码/条形码内容
|
|
11
11
|
|
|
12
12
|
### English
|
|
13
|
-
This is
|
|
13
|
+
This is an encoding/decoding tool plugin developed for the Koishi chatbot framework. This plugin has the following features:
|
|
14
14
|
- Support for URL encoding/decoding
|
|
15
15
|
- Support for Base64 encoding/decoding
|
|
16
16
|
- Support for Unicode encoding/decoding
|
|
@@ -40,20 +40,6 @@ This is a codec tool plugin developed for the Koishi chatbot framework, built on
|
|
|
40
40
|
| unicode-decode <text> | Decode the specified Unicode-encoded text |
|
|
41
41
|
| decode-code | Parse QR code/barcode content from the attached image |
|
|
42
42
|
|
|
43
|
-
## 依赖说明 (Dependencies)
|
|
44
|
-
|
|
45
|
-
### 中文
|
|
46
|
-
该插件运行依赖以下第三方库:
|
|
47
|
-
- jimp:图片处理
|
|
48
|
-
- jsqr:二维码解析
|
|
49
|
-
- @zxing/library:条形码解析
|
|
50
|
-
|
|
51
|
-
### English
|
|
52
|
-
This plugin depends on the following third-party libraries to run:
|
|
53
|
-
- jimp: Image processing
|
|
54
|
-
- jsqr: QR code parsing
|
|
55
|
-
- @zxing/library: Barcode parsing
|
|
56
|
-
|
|
57
43
|
## 项目贡献者 (Contributors)
|
|
58
44
|
| 贡献者 (Contributor) | 贡献内容 (Contribution) |
|
|
59
45
|
| --- | --- |
|