| 1 | module reasonix |
| 2 | |
| 3 | go 1.25.0 |
| 4 | |
| 5 | toolchain go1.26.5 |
| 6 | |
| 7 | require ( |
| 8 | charm.land/bubbles/v2 v2.1.0 |
| 9 | charm.land/bubbletea/v2 v2.0.7 |
| 10 | charm.land/lipgloss/v2 v2.0.4 |
| 11 | git.sr.ht/~jackmordaunt/go-toast/v2 v2.0.3 |
| 12 | github.com/BurntSushi/toml v1.6.0 |
| 13 | github.com/alecthomas/chroma/v2 v2.27.0 |
| 14 | github.com/atotto/clipboard v0.1.4 |
| 15 | github.com/aymanbagabas/go-udiff v0.4.1 |
| 16 | github.com/bmatcuk/doublestar/v4 v4.10.0 |
| 17 | github.com/charmbracelet/colorprofile v0.4.3 |
| 18 | github.com/charmbracelet/x/ansi v0.11.7 |
| 19 | github.com/godbus/dbus/v5 v5.2.2 |
| 20 | github.com/joho/godotenv v1.5.1 |
| 21 | github.com/kevinburke/ssh_config v1.6.0 |
| 22 | github.com/larksuite/oapi-sdk-go/v3 v3.9.5 |
| 23 | github.com/mattn/go-runewidth v0.0.24 |
| 24 | github.com/pkg/sftp v1.13.10 |
| 25 | github.com/rivo/uniseg v0.4.7 |
| 26 | github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 |
| 27 | github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 |
| 28 | github.com/spf13/pflag v1.0.6 |
| 29 | github.com/tree-sitter/go-tree-sitter v0.25.0 |
| 30 | github.com/tree-sitter/tree-sitter-javascript v0.25.0 |
| 31 | github.com/tree-sitter/tree-sitter-python v0.25.0 |
| 32 | github.com/tree-sitter/tree-sitter-rust v0.24.2 |
| 33 | github.com/tree-sitter/tree-sitter-typescript v0.23.2 |
| 34 | github.com/yuin/goldmark v1.8.2 |
| 35 | github.com/zalando/go-keyring v0.2.8 |
| 36 | go.uber.org/goleak v1.3.0 |
| 37 | golang.org/x/crypto v0.53.0 |
| 38 | golang.org/x/image v0.43.0 |
| 39 | golang.org/x/mod v0.37.0 |
| 40 | golang.org/x/net v0.56.0 |
| 41 | golang.org/x/sys v0.46.0 |
| 42 | golang.org/x/term v0.44.0 |
| 43 | golang.org/x/text v0.39.0 |
| 44 | gopkg.in/yaml.v3 v3.0.1 |
| 45 | mvdan.cc/sh/v3 v3.13.1 |
| 46 | ) |
| 47 | |
| 48 | require ( |
| 49 | github.com/charmbracelet/ultraviolet v0.0.0-20260601155805-6cf7526a1b3f // indirect |
| 50 | github.com/charmbracelet/x/term v0.2.2 // indirect |
| 51 | github.com/charmbracelet/x/termios v0.1.1 // indirect |
| 52 | github.com/charmbracelet/x/windows v0.2.2 // indirect |
| 53 | github.com/clipperhouse/displaywidth v0.11.0 // indirect |
| 54 | github.com/clipperhouse/uax29/v2 v2.7.0 // indirect |
| 55 | github.com/danieljoos/wincred v1.2.3 // indirect |
| 56 | github.com/dlclark/regexp2/v2 v2.2.1 // indirect |
| 57 | github.com/go-ole/go-ole v1.3.0 // indirect |
| 58 | github.com/gogo/protobuf v1.3.2 // indirect |
| 59 | github.com/gorilla/websocket v1.5.0 // indirect |
| 60 | github.com/kr/fs v0.1.0 // indirect |
| 61 | github.com/lucasb-eyer/go-colorful v1.4.0 // indirect |
| 62 | github.com/mattn/go-pointer v0.0.1 // indirect |
| 63 | github.com/muesli/cancelreader v0.2.2 // indirect |
| 64 | github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect |
| 65 | golang.org/x/sync v0.21.0 // indirect |
| 66 | ) |
| 67 |