-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
54 lines (49 loc) · 2 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
51
52
53
54
module github.com/lets-cli/lets
go 1.23
require (
github.com/codeclysm/extract v2.2.0+incompatible
github.com/coreos/go-semver v0.3.1
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/fatih/color v1.16.0
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.8.0
github.com/tliron/commonlog v0.2.8
github.com/tliron/glsp v0.2.2
github.com/tree-sitter-grammars/tree-sitter-yaml v0.7.0
github.com/tree-sitter/go-tree-sitter v0.24.0
golang.org/x/sync v0.3.0
)
require (
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/iancoleman/strcase v0.3.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-pointer v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/muesli/termenv v0.15.2 // indirect
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/sourcegraph/jsonrpc2 v0.2.0 // indirect
github.com/tliron/kutil v0.3.11 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/term v0.14.0 // indirect
)
require (
github.com/h2non/filetype v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/juju/errors v0.0.0-20200330140219-3fe23663418f // indirect
github.com/juju/testing v0.0.0-20201216035041-2be42bba85f3 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/lithammer/dedent v1.1.0
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/exp v0.0.0-20221028150844-83b7d23a625f
golang.org/x/sys v0.14.0 // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v3 v3.0.1
)
replace github.com/docopt/docopt-go => github.com/kindermax/docopt.go v0.7.1