generated from rwxrob/bonzai-example
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
61 lines (58 loc) · 2.32 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
55
56
57
58
59
60
61
module github.com/rwxrob/keg
go 1.18
require (
github.com/charmbracelet/glamour v0.6.0
github.com/rwxrob/bonzai v0.20.10
github.com/rwxrob/choose v0.2.1
github.com/rwxrob/conf v0.8.2
github.com/rwxrob/fs v0.20.2
github.com/rwxrob/grep v0.2.5
github.com/rwxrob/help v0.7.2
github.com/rwxrob/json v0.8.0
github.com/rwxrob/pegn v0.2.1
github.com/rwxrob/term v0.2.9
github.com/rwxrob/to v0.12.1
github.com/rwxrob/vars v0.6.3
)
require (
github.com/a8m/envsubst v1.3.0 // indirect
github.com/alecthomas/chroma v0.10.0 // indirect
github.com/alecthomas/participle/v2 v2.0.0-beta.5 // indirect
github.com/aymanbagabas/go-osc52 v1.2.1 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/elliotchance/orderedmap v1.5.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/goccy/go-json v0.10.0 // indirect
github.com/goccy/go-yaml v1.9.7 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/jinzhu/copier v0.3.5 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/microcosm-cc/bluemonday v1.0.21 // indirect
github.com/mikefarah/yq/v4 v4.30.5 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.13.0 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/rwxrob/compcmd v0.3.0 // indirect
github.com/rwxrob/compfile v0.1.12 // indirect
github.com/rwxrob/fn v0.4.0 // indirect
github.com/rwxrob/structs v0.6.0 // indirect
github.com/rwxrob/yq v0.3.2 // indirect
github.com/yuin/goldmark v1.5.3 // indirect
github.com/yuin/goldmark-emoji v1.0.1 // indirect
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
gopkg.in/op/go-logging.v1 v1.0.0-20160211212156-b2cb9fa56473 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)