apps/blobs/go.mod 3.2 K raw
1
module github.com/stevedylandev/andromeda/apps/blobs
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/BurntSushi/toml v1.6.0
10
	github.com/aws/aws-sdk-go-v2 v1.41.7
11
	github.com/aws/aws-sdk-go-v2/credentials v1.19.16
12
	github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0
13
	github.com/charmbracelet/x/mosaic v0.0.0-20260525135217-abeec2b8bf0b
14
	github.com/stevedylandev/andromeda/pkg/auth v0.0.0
15
	github.com/stevedylandev/andromeda/pkg/config v0.0.0
16
	github.com/stevedylandev/andromeda/pkg/darkmatter v0.0.0
17
	github.com/stevedylandev/andromeda/pkg/sqlite v0.0.0
18
	github.com/stevedylandev/andromeda/pkg/tui v0.0.0
19
	github.com/stevedylandev/andromeda/pkg/web v0.0.0
20
	golang.org/x/image v0.41.0
21
	golang.org/x/term v0.36.0
22
)
23
24
require (
25
	github.com/atotto/clipboard v0.1.4 // indirect
26
	github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.10 // indirect
27
	github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.23 // indirect
28
	github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.23 // indirect
29
	github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.24 // indirect
30
	github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.9 // indirect
31
	github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.9.15 // indirect
32
	github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.23 // indirect
33
	github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.19.23 // indirect
34
	github.com/aws/smithy-go v1.25.1 // 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/term v0.2.2 // indirect
39
	github.com/charmbracelet/x/termios v0.1.1 // indirect
40
	github.com/charmbracelet/x/windows v0.2.2 // indirect
41
	github.com/clipperhouse/displaywidth v0.11.0 // indirect
42
	github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
43
	github.com/dustin/go-humanize v1.0.1 // indirect
44
	github.com/google/uuid v1.6.0 // indirect
45
	github.com/lucasb-eyer/go-colorful v1.4.0 // indirect
46
	github.com/mattn/go-isatty v0.0.20 // indirect
47
	github.com/mattn/go-runewidth v0.0.23 // indirect
48
	github.com/muesli/cancelreader v0.2.2 // indirect
49
	github.com/ncruces/go-strftime v0.1.9 // indirect
50
	github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
51
	github.com/rivo/uniseg v0.4.7 // indirect
52
	github.com/sahilm/fuzzy v0.1.1 // indirect
53
	github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
54
	golang.org/x/crypto v0.39.0 // indirect
55
	golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
56
	golang.org/x/sync v0.20.0 // indirect
57
	golang.org/x/sys v0.43.0 // indirect
58
	modernc.org/libc v1.65.7 // indirect
59
	modernc.org/mathutil v1.7.1 // indirect
60
	modernc.org/memory v1.11.0 // indirect
61
	modernc.org/sqlite v1.37.1 // indirect
62
)
63
64
replace (
65
	github.com/stevedylandev/andromeda/pkg/auth => ../../pkg/auth
66
	github.com/stevedylandev/andromeda/pkg/config => ../../pkg/config
67
	github.com/stevedylandev/andromeda/pkg/darkmatter => ../../pkg/darkmatter
68
	github.com/stevedylandev/andromeda/pkg/sqlite => ../../pkg/sqlite
69
	github.com/stevedylandev/andromeda/pkg/tui => ../../pkg/tui
70
	github.com/stevedylandev/andromeda/pkg/web => ../../pkg/web
71
)