code / lua-debug-tui

Lines1.5K Lua1.5K Markdown33
(25 lines)
1 package = "ldt"
2 version = "scm-1"
3 source = {
4 url = "https://bitbucket.org/spilt/lua-debug-tui"
5 }
6 description = {
7 summary = "This is a text-based user interface command line debugging utility for Lua and Moonscript.",
8 detailed = [[
9 This is a text-based user interface command line debugging utility for Lua and Moonscript.
10 It lets you browse the call stack, source code, and local variables right at the moment when
11 your code crashes (or when `ldt.breakpoint()` is called). Moonscript is fully supported, so the
12 callstack and source code panes will display the correct source for functions written in
13 Moonscript.]],
14 homepage = "https://bitbucket.org/spilt/lua-debug-tui",
15 license = "MIT"
17 dependencies = {
18 "lua ~> 5.3"
20 build = {
21 type = "builtin",
22 modules = {
23 ldt = "ldt.lua"