/ go.mod
go.mod
 1  module creature
 2  
 3  go 1.22.0
 4  
 5  require (
 6  	github.com/fatih/color v1.18.0
 7  	github.com/gdamore/tcell/v2 v2.8.1
 8  	github.com/google/uuid v1.6.0
 9  	github.com/gorilla/websocket v1.5.3
10  )
11  
12  require (
13  	github.com/gdamore/encoding v1.0.1 // indirect
14  	github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
15  	github.com/mattn/go-colorable v0.1.13 // indirect
16  	github.com/mattn/go-isatty v0.0.20 // indirect
17  	github.com/mattn/go-runewidth v0.0.16 // indirect
18  	github.com/rivo/uniseg v0.4.3 // indirect
19  	golang.org/x/sys v0.29.0 // indirect
20  	golang.org/x/term v0.28.0 // indirect
21  	golang.org/x/text v0.21.0 // indirect
22  )