AtlatestRepositorysigil-tui-demo

sigil-tui-demo / treepackage.sgl

1;;; sigil-tui-demo - Demo TUI application showcasing sigil-tui features
2;;;
3;;; A chat client simulation exercising all TUI components: panels,
4;;; selectable lists, text input, scrollable content, and status bar.
5
6(package
7 name: "sigil-tui-demo"
8 version: "0.7.0"
9 description: "Demo TUI application for sigil-tui"
10 url: "https://codeberg.org/sigil/sigil-tui-demo"
11 license: "BSD-3-Clause"
12 authors: (list "David Wilson <[email protected]>")
14 entry: '(sigil tui demo)
16 configs: (list
17 (config
18 name: 'dev
19 output-dir: "build/dev"
20 debug?: #t
21 optimize: 0)
22 (config
23 name: 'release
24 output-dir: "build/release"
25 debug?: #f
26 optimize: 2))
28 dependencies: (list
29 (from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
30 (from-git url: "codeberg:sigil/sigil-tui" version: "^0.7.0")))