52 lines
2.0 KiB
Modula-2
52 lines
2.0 KiB
Modula-2
module gitee_cli
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/AlecAivazis/survey/v2 v2.3.7
|
|
github.com/atotto/clipboard v0.1.4
|
|
github.com/charmbracelet/bubbles v0.18.0
|
|
github.com/charmbracelet/bubbletea v0.25.0
|
|
github.com/charmbracelet/glamour v0.7.0
|
|
github.com/charmbracelet/lipgloss v0.10.0
|
|
github.com/fatih/color v1.16.0
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
|
|
github.com/spf13/cobra v1.8.0
|
|
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/alecthomas/chroma/v2 v2.13.0 // indirect
|
|
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
|
|
github.com/aymerick/douceur v0.2.0 // indirect
|
|
github.com/containerd/console v1.0.4 // indirect
|
|
github.com/dlclark/regexp2 v1.11.0 // indirect
|
|
github.com/gorilla/css v1.0.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-localereader v0.0.1 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
github.com/microcosm-cc/bluemonday v1.0.26 // indirect
|
|
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
github.com/muesli/reflow v0.3.0 // indirect
|
|
github.com/muesli/termenv v0.15.2 // indirect
|
|
github.com/olekukonko/tablewriter v0.0.5 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/yuin/goldmark v1.7.0 // indirect
|
|
github.com/yuin/goldmark-emoji v1.0.2 // indirect
|
|
golang.org/x/net v0.22.0 // indirect
|
|
golang.org/x/sync v0.6.0 // indirect
|
|
golang.org/x/sys v0.18.0 // indirect
|
|
golang.org/x/term v0.18.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
)
|