-
Notifications
You must be signed in to change notification settings - Fork 231
/
go.mod
50 lines (44 loc) · 1.52 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module github.com/knqyf263/pet
go 1.21
require (
github.com/atotto/clipboard v0.1.4
github.com/briandowns/spinner v1.23.1
github.com/chzyer/readline v1.5.1
github.com/fatih/color v1.18.0
github.com/google/go-github v17.0.0+incompatible
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5 // indirect
github.com/xanzy/go-gitlab v0.114.0
golang.org/x/oauth2 v0.24.0
)
require gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
require (
github.com/awesome-gocui/gocui v1.1.0
github.com/go-test/deep v1.1.1
github.com/pelletier/go-toml v1.9.5
golang.org/x/term v0.27.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/alessio/shellescape v1.4.1 // indirect
github.com/gdamore/encoding v1.0.1 // indirect
github.com/gdamore/tcell/v2 v2.7.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/stretchr/testify v1.10.0
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.8.0 // indirect
)