| 1 | module github.com/stevedylandev/andromeda/apps/jotts |
| 2 | |
| 3 | go 1.25.8 |
| 4 | |
| 5 | require ( |
| 6 | charm.land/bubbles/v2 v2.1.0 |
| 7 | charm.land/bubbletea/v2 v2.0.6 |
| 8 | charm.land/glamour/v2 v2.0.0 |
| 9 | charm.land/lipgloss/v2 v2.0.3 |
| 10 | github.com/atotto/clipboard v0.1.4 |
| 11 | github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c |
| 12 | github.com/stevedylandev/andromeda/pkg/auth v0.0.0 |
| 13 | github.com/stevedylandev/andromeda/pkg/config v0.0.0 |
| 14 | github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0 |
| 15 | github.com/stevedylandev/andromeda/pkg/sqlite v0.0.0 |
| 16 | github.com/stevedylandev/andromeda/pkg/tui v0.0.0 |
| 17 | github.com/stevedylandev/andromeda/pkg/web v0.0.0 |
| 18 | github.com/yuin/goldmark v1.7.13 |
| 19 | golang.org/x/term v0.43.0 |
| 20 | ) |
| 21 | |
| 22 | replace ( |
| 23 | github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth |
| 24 | github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config |
| 25 | github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter |
| 26 | github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite |
| 27 | github.com/stevedylandev/andromeda/pkg/tui => ../../pkg/tui |
| 28 | github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web |
| 29 | ) |
| 30 | |
| 31 | require ( |
| 32 | github.com/BurntSushi/toml v1.6.0 // indirect |
| 33 | github.com/alecthomas/chroma/v2 v2.20.0 // indirect |
| 34 | github.com/aymerick/douceur v0.2.0 // indirect |
| 35 | github.com/charmbracelet/colorprofile v0.4.3 // indirect |
| 36 | github.com/charmbracelet/ultraviolet v0.0.0-20260416155717-489999b90468 // indirect |
| 37 | github.com/charmbracelet/x/ansi v0.11.7 // indirect |
| 38 | github.com/charmbracelet/x/exp/slice v0.0.0-20250327172914-2fdc97757edf // indirect |
| 39 | github.com/charmbracelet/x/term v0.2.2 // indirect |
| 40 | github.com/charmbracelet/x/termios v0.1.1 // indirect |
| 41 | github.com/charmbracelet/x/windows v0.2.2 // indirect |
| 42 | github.com/clipperhouse/displaywidth v0.11.0 // indirect |
| 43 | github.com/clipperhouse/uax29/v2 v2.7.0 // indirect |
| 44 | github.com/dlclark/regexp2 v1.11.5 // indirect |
| 45 | github.com/dustin/go-humanize v1.0.1 // indirect |
| 46 | github.com/google/uuid v1.6.0 // indirect |
| 47 | github.com/gorilla/css v1.0.1 // indirect |
| 48 | github.com/lucasb-eyer/go-colorful v1.4.0 // indirect |
| 49 | github.com/mattn/go-isatty v0.0.20 // indirect |
| 50 | github.com/mattn/go-runewidth v0.0.23 // indirect |
| 51 | github.com/microcosm-cc/bluemonday v1.0.27 // indirect |
| 52 | github.com/muesli/cancelreader v0.2.2 // indirect |
| 53 | github.com/ncruces/go-strftime v0.1.9 // indirect |
| 54 | github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
| 55 | github.com/rivo/uniseg v0.4.7 // indirect |
| 56 | github.com/sahilm/fuzzy v0.1.1 // indirect |
| 57 | github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect |
| 58 | github.com/yuin/goldmark-emoji v1.0.6 // indirect |
| 59 | golang.org/x/crypto v0.39.0 // indirect |
| 60 | golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect |
| 61 | golang.org/x/net v0.39.0 // indirect |
| 62 | golang.org/x/sync v0.20.0 // indirect |
| 63 | golang.org/x/sys v0.44.0 // indirect |
| 64 | golang.org/x/text v0.30.0 // indirect |
| 65 | modernc.org/libc v1.65.7 // indirect |
| 66 | modernc.org/mathutil v1.7.1 // indirect |
| 67 | modernc.org/memory v1.11.0 // indirect |
| 68 | modernc.org/sqlite v1.37.1 // indirect |
| 69 | ) |