This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
69 lines (65 loc) · 3.08 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
62
63
64
65
66
67
68
69
module github.com/ortfo/mk
go 1.18
require (
github.com/PuerkitoBio/goquery v1.8.0
github.com/SebastiaanKlippert/go-wkhtmltopdf v1.7.2
github.com/alecthomas/chroma v0.10.0
github.com/antonmedv/expr v1.9.0
github.com/chai2010/gettext-go v1.0.2
github.com/davecgh/go-spew v1.1.1
github.com/deckarep/golang-set v1.8.0
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/gobwas/glob v0.2.3
github.com/invopop/jsonschema v0.4.0
github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba
github.com/joho/godotenv v1.4.0
github.com/json-iterator/go v1.1.12
github.com/mattn/go-isatty v0.0.14
github.com/metal3d/go-slugify v0.0.0-20160607203414-7ac2014b2f23
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/ortfo/db v0.0.0-20220430175239-84e2a21af8b4
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/radovskyb/watcher v1.0.7
github.com/relvacode/iso8601 v1.1.0
github.com/stoewer/go-strcase v1.2.0
github.com/stretchr/testify v1.7.1
github.com/theckman/yacspin v0.13.12
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4
golang.org/x/net v0.0.0-20220513224357-95641704303c
gopkg.in/yaml.v2 v2.4.0
rogchap.com/v8go v0.7.0
)
require github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
require (
github.com/EdlinOrg/prominentcolor v1.0.0 // indirect
github.com/JohannesKaufmann/html-to-markdown v1.3.3 // indirect
github.com/anaskhan96/soup v1.2.5 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
github.com/denormal/go-gitignore v0.0.0-20180930084346-ae8ad1d07817
github.com/dlclark/regexp2 v1.4.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.0 // indirect
github.com/gomarkdown/markdown v0.0.0-20220419181919-412bcf14cd2e // indirect
github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/oliamb/cutter v0.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
github.com/ssttevee/go-ffmpeg v0.2.1 // indirect
github.com/tcolgate/mp3 v0.0.0-20170426193717-e79c5a46d300 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
golang.org/x/image v0.0.0-20220413100746-70e8d0d3baa9 // indirect
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)