-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
53 lines (48 loc) · 1.93 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
module aih
go 1.19
require (
//github.com/Databingo/aih/ry v0.0.0-bef1172
github.com/atotto/clipboard v0.1.4
github.com/creack/pty v1.1.18
// github.com/gdamore/tcell/v2 v2.6.1-0.20230827060410-08c7757cd1c9
github.com/go-rod/rod v0.114.5
github.com/go-rod/stealth v0.4.9
github.com/google/go-github v17.0.0+incompatible
github.com/google/uuid v1.3.1
github.com/manifoldco/promptui v0.9.0
github.com/peterh/liner v1.2.2
github.com/rivo/tview v0.0.0-20230511053024-822bd067b165
github.com/sashabaranov/go-openai v1.9.0
github.com/tidwall/gjson v1.14.4
github.com/tidwall/sjson v1.2.5
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
jaytaylor.com/html2text v0.0.0-20230321000545-74c2419ad056
)
// replace github.com/Databingo/aih/ry => ./ry
require github.com/gdamore/tcell/v2 v2.6.0
require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/ysmood/fetchup v0.2.3 // indirect
github.com/ysmood/goob v0.4.0 // indirect
github.com/ysmood/got v0.34.1 // indirect
github.com/ysmood/gson v0.7.3 // indirect
github.com/ysmood/leakless v0.8.0 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/term v0.9.0 // indirect
golang.org/x/text v0.12.0 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.30.0 // indirect
)