koishi-plugin-ciyi 0.0.1
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/lib/index.d.ts +40 -0
- package/lib/index.js +46867 -0
- package/package.json +41 -0
- package/readme.md +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "koishi-plugin-ciyi",
|
|
3
|
+
"description": "Koishi 的词意(猜词小游戏)插件。根据词语的含义相似程度,猜测正确的词语。",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"typings": "lib/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib",
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"koishi": {
|
|
12
|
+
"service": {
|
|
13
|
+
"required": [
|
|
14
|
+
"database"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT OR Apache-2.0",
|
|
19
|
+
"author": "Nawyjx <3373167460@qq.com>",
|
|
20
|
+
"homepage": "https://www.npmjs.com/package/koishi-plugin-ciyi?activeTab=readme",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/araea/koishi-plugin-ciyi.git"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"koishi",
|
|
27
|
+
"plugin",
|
|
28
|
+
"chatbot",
|
|
29
|
+
"ciyi",
|
|
30
|
+
"word",
|
|
31
|
+
"game",
|
|
32
|
+
"guess",
|
|
33
|
+
"wordle",
|
|
34
|
+
"猜词",
|
|
35
|
+
"游戏",
|
|
36
|
+
"词影"
|
|
37
|
+
],
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"koishi": "^4.18.3"
|
|
40
|
+
}
|
|
41
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# koishi-plugin-ciyi
|
|
2
|
+
|
|
3
|
+
[<img alt="github" src="https://img.shields.io/badge/github-araea/ci_yi-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">](https://github.com/araea/koishi-plugin-ciyi)
|
|
4
|
+
[<img alt="npm" src="https://img.shields.io/npm/v/koishi-plugin-shindan-maker.svg?style=for-the-badge&color=fc8d62&logo=npm" height="20">](https://www.npmjs.com/package/koishi-plugin-ciyi)
|
|
5
|
+
|
|
6
|
+
Koishi 的词意(猜词小游戏)插件。根据词语的含义相似程度,猜测正确的词语。
|
|
7
|
+
|
|
8
|
+
## 使用
|
|
9
|
+
|
|
10
|
+
1. 设置指令别名。
|
|
11
|
+
2. 发送 `ciyi` 查看帮助。
|
|
12
|
+
|
|
13
|
+
## 致谢
|
|
14
|
+
|
|
15
|
+
* [Koishi](https://koishi.chat/)
|
|
16
|
+
* [词影](https://cy.surprising.studio/)
|
|
17
|
+
|
|
18
|
+
## QQ 群
|
|
19
|
+
|
|
20
|
+
* 956758505
|
|
21
|
+
|
|
22
|
+
<br>
|
|
23
|
+
|
|
24
|
+
#### License
|
|
25
|
+
|
|
26
|
+
<sup>
|
|
27
|
+
Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
|
|
28
|
+
2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
|
|
29
|
+
</sup>
|
|
30
|
+
|
|
31
|
+
<br>
|
|
32
|
+
|
|
33
|
+
<sub>
|
|
34
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
35
|
+
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
|
|
36
|
+
be dual licensed as above, without any additional terms or conditions.
|
|
37
|
+
</sub>
|