-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlcqhttp-scm-1.rockspec
34 lines (30 loc) · 1.06 KB
/
lcqhttp-scm-1.rockspec
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
package = "lcqhttp"
version = "scm-1"
source = {
url = "git+https://github.com/cleoold/cqhttp-lua53-sdk.git"
}
description = {
summary = "Lua binding of CQHTTP",
detailed = "此项目为 [酷Q](cqp.cc) 的 [CQHTTP](https://cqhttp.cc/) 插件的 Lua 绑定。她封装了 [lua-http](https://github.com/daurnimator/lua-http/) 库的方法使其可以直接响应 QQ 机器人的事件与调用 API 来发送信息。",
homepage = "https://github.com/cleoold/cqhttp-lua53-sdk",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"http >= 0.3",
"lunajson >= 1.2.2",
"sha1 >= 0.6.0"
}
build = {
type = "builtin",
modules = {
["lcqhttp.event"] = "lcqhttp/event.lua",
["lcqhttp.http"] = "lcqhttp/http.lua",
["lcqhttp.httpcontext"] = "lcqhttp/httpcontext.lua",
["lcqhttp.lcqhttp_base"] = "lcqhttp/lcqhttp_base.lua",
["lcqhttp.log"] = "lcqhttp/log.lua",
["lcqhttp.message"] = "lcqhttp/message.lua",
["lcqhttp.util"] = "lcqhttp/util.lua",
["lcqhttp.ws"] = "lcqhttp/ws.lua"
}
}