-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstones.lua
45 lines (41 loc) · 1.36 KB
/
stones.lua
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
return {
luaStoned = {
files = {
"https://raw.githubusercontent.com/Lupus590-CC/LuaStoned/master/luastoned.lua",
"https://raw.githubusercontent.com/Lupus590-CC/LuaStoned/master/shim_template.lua",
},
mainFile = "luastoned.lua", -- only required in multi file stones
name = "Lua Stoned",
summary = "A play on LuaRocks. And a package manager for CC:T.",
description = "",
license = "MIT",
type = "program",
dependencies = {
["stone_manager"] = true,
},
shellCompletionFunction = function()
end,
requireCcBuiltins = {
},
helpFiles = {
"url",
"url"
},
version = "0.0.1",
},
stone_manager = {
files = {
"https://raw.githubusercontent.com/Lupus590-CC/LuaStoned/master/stone_manager.lua",
},
name = "stone_manager",
summary = "The module that does a lot of the work for the Lua Stoned package manager.",
description = "Made for Lua Stoned, see the Lua Stoned project at https://github.com/Lupus590-CC/LuaStoned/",
license = "MIT",
type = "module",
dependencies = {
},
requireCcBuiltins = {
},
version = "0.0.1",
},
}