-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgo.mod
29 lines (26 loc) · 1.04 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
module github.com/MichaelMure/go-term-markdown
go 1.17
require (
github.com/MichaelMure/go-term-text v0.3.1
github.com/alecthomas/chroma v0.10.0
github.com/eliukblau/pixterm v1.3.1
github.com/fatih/color v1.13.0
github.com/gomarkdown/markdown v0.0.0-20220310201231-552c6011c0b8
github.com/kyokomi/emoji/v2 v2.2.9
github.com/stretchr/testify v1.7.1
golang.org/x/net v0.0.0-20220401154927-543a649e0bdd
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/disintegration/imaging v1.6.2 // indirect
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/image v0.0.0-20220321031419-a8550c1d254a // indirect
golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)