forked from Twiyin0/koishi-plugin-minecraft-sync-msg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "koishi-plugin-minecraft-sync-msg",
"description": "一个简易socket通信实现mc消息互联",
"version": "0.2.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"homepage": "https://blog.iin0.cn/views/myblog/mc/koishiandmc.html",
"repository": {
"type": "git",
"url": "git+https://github.com/Twiyin0/koishi-plugin-minecraft-sync-msg.git"
},
"contributors": [
"Twiyin0 <twiyin0@outlook.com>"
],
"koishi": {
"browser": true,
"description": {
"en": "A simple socket communication for MC message interconnection (please stop the plugin before updating)",
"zh": "一个简易socket通信实现mc消息互联(更新前请停止插件)"
},
"service": {
"required": [
"database"
]
}
},
"files": [
"lib",
"dist"
],
"license": "MIT",
"keywords": [
"chatbot",
"koishi",
"plugin",
"minecraft",
"mc互联",
"mc"
],
"peerDependencies": {
"koishi": "^4.14.0"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"rcon-client": "^4.2.3"
},
"devDependencies": {
"iconv-lite": "^0.6.3",
"rcon-client": "^4.2.3"
}
}