-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
61 lines (56 loc) · 2.3 KB
/
go.mod
File metadata and controls
61 lines (56 loc) · 2.3 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
module github.com/compozy/kb
go 1.24.0
require (
github.com/BurntSushi/toml v1.6.0
github.com/joho/godotenv v1.5.1
github.com/magefile/mage v1.17.0
)
require (
github.com/JohannesKaufmann/dom v0.2.0
github.com/JohannesKaufmann/html-to-markdown/v2 v2.5.0
github.com/kkdai/youtube/v2 v2.10.5
github.com/otiai10/gosseract/v2 v2.4.1
github.com/pdfcpu/pdfcpu v0.11.1
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
github.com/schollz/progressbar/v3 v3.19.0
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/tree-sitter/go-tree-sitter v0.25.0
github.com/tree-sitter/tree-sitter-go v0.23.4
github.com/tree-sitter/tree-sitter-java v0.23.5
github.com/tree-sitter/tree-sitter-javascript v0.25.0
github.com/tree-sitter/tree-sitter-rust v0.23.2
github.com/tree-sitter/tree-sitter-typescript v0.23.2
github.com/xuri/excelize/v2 v2.10.1
golang.org/x/image v0.32.0
golang.org/x/net v0.50.0
golang.org/x/term v0.40.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bitly/go-simplejson v0.5.1 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/dop251/goja v0.0.0-20260311135729-065cd970411c // indirect
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
github.com/google/pprof v0.0.0-20260302011040-a15ffb7f9dcc // indirect
github.com/hhrutter/lzw v1.0.0 // indirect
github.com/hhrutter/pkcs7 v0.2.0 // indirect
github.com/hhrutter/tiff v1.0.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-pointer v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.21 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/richardlehane/mscfb v1.0.6 // indirect
github.com/richardlehane/msoleps v1.0.6 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/tiendc/go-deepcopy v1.7.2 // indirect
github.com/xuri/efp v0.0.1 // indirect
github.com/xuri/nfp v0.0.2-0.20250530014748-2ddeb826f9a9 // indirect
golang.org/x/crypto v0.48.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/text v0.34.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
replace github.com/tree-sitter/tree-sitter-go/bindings/go => github.com/tree-sitter/tree-sitter-go v0.23.4