diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-12 20:42:09 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-12 20:42:09 -0800 |
| commit | fa037e748bb2ba65f75ba104e18d460a8fbcd49b (patch) | |
| tree | 9a6c33024475ff6fd08013e39aee9717296cc638 /go.mod | |
| parent | 27d14514ab3c3c11e822fc2c1220072298e85c02 (diff) | |
| download | neko-fa037e748bb2ba65f75ba104e18d460a8fbcd49b.tar.gz neko-fa037e748bb2ba65f75ba104e18d460a8fbcd49b.tar.bz2 neko-fa037e748bb2ba65f75ba104e18d460a8fbcd49b.zip | |
Implement Bubble Tea Terminal UI (TUI)
- Added Bubble Tea, Lipgloss, and Bubbles dependencies
- Implemented TUI package in tui/ for browsing feeds and items
- Added --tui flag to main command
- Verified build and existing tests
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 29 |
1 files changed, 26 insertions, 3 deletions
@@ -1,13 +1,16 @@ module adammathes.com/neko -go 1.23.0 +go 1.24.2 -toolchain go1.24.3 +toolchain go1.24.4 require ( github.com/GeertJohan/go.rice v1.0.3 github.com/PuerkitoBio/goquery v1.8.1 github.com/advancedlogic/GoOse v0.0.0-20200830213114-1225d531e0ad + github.com/charmbracelet/bubbles v1.0.0 + github.com/charmbracelet/bubbletea v1.3.10 + github.com/charmbracelet/lipgloss v1.1.0 github.com/mattn/go-sqlite3 v1.14.16 github.com/microcosm-cc/bluemonday v1.0.26 github.com/mmcdole/gofeed v1.1.0 @@ -20,22 +23,42 @@ require ( require ( github.com/andybalholm/cascadia v1.3.2 // indirect github.com/araddon/dateparse v0.0.0-20201001162425-8aadafed4dc4 // indirect + github.com/atotto/clipboard v0.1.4 // indirect + github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/aymerick/douceur v0.2.0 // indirect + github.com/charmbracelet/colorprofile v0.4.1 // indirect + github.com/charmbracelet/x/ansi v0.11.6 // indirect + github.com/charmbracelet/x/cellbuf v0.0.15 // indirect + github.com/charmbracelet/x/term v0.2.2 // indirect + github.com/clipperhouse/displaywidth v0.9.0 // indirect + github.com/clipperhouse/stringish v0.1.1 // indirect + github.com/clipperhouse/uax29/v2 v2.5.0 // indirect github.com/daaku/go.zipexe v1.0.2 // indirect + github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect github.com/fatih/set v0.2.1 // indirect github.com/gigawattio/window v0.0.0-20180317192513-0f5467e35573 // indirect github.com/go-resty/resty/v2 v2.3.0 // indirect github.com/gorilla/css v1.0.0 // indirect github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7 // indirect github.com/json-iterator/go v1.1.10 // indirect - github.com/mattn/go-runewidth v0.0.9 // indirect + github.com/lucasb-eyer/go-colorful v1.3.0 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-localereader v0.0.1 // indirect + github.com/mattn/go-runewidth v0.0.19 // indirect github.com/mmcdole/goxpp v0.0.0-20200921145534-2f3784f67354 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect + github.com/muesli/cancelreader v0.2.2 // indirect + github.com/muesli/termenv v0.16.0 // indirect github.com/olekukonko/tablewriter v0.0.4 // indirect github.com/pkg/errors v0.9.1 // indirect + github.com/rivo/uniseg v0.4.7 // indirect + github.com/sahilm/fuzzy v0.1.1 // indirect github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect + github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect golang.org/x/net v0.21.0 // indirect + golang.org/x/sys v0.38.0 // indirect golang.org/x/text v0.22.0 // indirect ) |
