-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathgo.mod
More file actions
67 lines (63 loc) · 2.47 KB
/
go.mod
File metadata and controls
67 lines (63 loc) · 2.47 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
module github.com/hashicorp/copywrite
go 1.25.0
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/bmatcuk/doublestar/v4 v4.10.0
github.com/bradleyfalzon/ghinstallation/v2 v2.18.0
github.com/hashicorp/go-hclog v1.6.3
github.com/jedib0t/go-pretty/v6 v6.7.9
github.com/knadh/koanf/parsers/dotenv v1.1.1
github.com/knadh/koanf/parsers/hcl v1.0.0
github.com/knadh/koanf/parsers/yaml v1.1.0
github.com/knadh/koanf/providers/confmap v1.0.0
github.com/knadh/koanf/providers/env v1.1.0
github.com/knadh/koanf/providers/file v1.2.1
github.com/knadh/koanf/providers/posflag v1.0.1
github.com/knadh/koanf/v2 v2.3.4
github.com/mattn/go-isatty v0.0.21
github.com/mergestat/timediff v0.0.4
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0
github.com/spf13/afero v1.15.0
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/stretchr/testify v1.11.1
github.com/thanhpk/randstr v1.0.6
golang.org/x/oauth2 v0.36.0
golang.org/x/sync v0.20.0
)
require (
github.com/cli/safeexec v1.0.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/google/go-github/v84 v84.0.0 // indirect
github.com/google/go-querystring v1.2.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/knadh/koanf/maps v0.1.2 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/term v0.37.0 // indirect
golang.org/x/text v0.31.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/cli/go-gh/v2 v2.13.0
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-github/v45 v45.2.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/samber/lo v1.53.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)