apps/sipp/go.mod 2.5 K raw
1
module github.com/stevedylandev/andromeda/apps/sipp
2
3
go 1.25.0
4
5
require (
6
	charm.land/bubbles/v2 v2.1.0
7
	charm.land/bubbletea/v2 v2.0.6
8
	charm.land/lipgloss/v2 v2.0.3
9
	github.com/alecthomas/chroma/v2 v2.24.1
10
	github.com/atotto/clipboard v0.1.4
11
	github.com/stevedylandev/andromeda/pkg/auth v0.0.0
12
	github.com/stevedylandev/andromeda/pkg/config v0.0.0
13
	github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0
14
	github.com/stevedylandev/andromeda/pkg/sqlite v0.0.0
15
	github.com/stevedylandev/andromeda/pkg/tui v0.0.0
16
	github.com/stevedylandev/andromeda/pkg/web v0.0.0
17
	golang.org/x/term v0.43.0
18
)
19
20
require (
21
	github.com/BurntSushi/toml v1.6.0 // indirect
22
	github.com/charmbracelet/colorprofile v0.4.3 // indirect
23
	github.com/charmbracelet/ultraviolet v0.0.0-20260416155717-489999b90468 // indirect
24
	github.com/charmbracelet/x/ansi v0.11.7 // indirect
25
	github.com/charmbracelet/x/term v0.2.2 // indirect
26
	github.com/charmbracelet/x/termios v0.1.1 // indirect
27
	github.com/charmbracelet/x/windows v0.2.2 // indirect
28
	github.com/clipperhouse/displaywidth v0.11.0 // indirect
29
	github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
30
	github.com/dlclark/regexp2 v1.12.0 // indirect
31
	github.com/dustin/go-humanize v1.0.1 // indirect
32
	github.com/google/uuid v1.6.0 // indirect
33
	github.com/lucasb-eyer/go-colorful v1.4.0 // indirect
34
	github.com/mattn/go-isatty v0.0.20 // indirect
35
	github.com/mattn/go-runewidth v0.0.23 // indirect
36
	github.com/muesli/cancelreader v0.2.2 // indirect
37
	github.com/ncruces/go-strftime v0.1.9 // indirect
38
	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
39
	github.com/rivo/uniseg v0.4.7 // indirect
40
	github.com/sahilm/fuzzy v0.1.1 // indirect
41
	github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
42
	golang.org/x/crypto v0.39.0 // indirect
43
	golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
44
	golang.org/x/mod v0.25.0 // indirect
45
	golang.org/x/sync v0.20.0 // indirect
46
	golang.org/x/sys v0.44.0 // indirect
47
	modernc.org/libc v1.65.7 // indirect
48
	modernc.org/mathutil v1.7.1 // indirect
49
	modernc.org/memory v1.11.0 // indirect
50
	modernc.org/sqlite v1.37.1 // indirect
51
)
52
53
replace (
54
	github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth
55
	github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config
56
	github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter
57
	github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite
58
	github.com/stevedylandev/andromeda/pkg/tui => ../../pkg/tui
59
	github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web
60
)