返回 DeepSeek-Reasonix
go.mod
根目录 / go.mod
1 module reasonix
2
3 go 1.26.0
4
5 toolchain go1.26.6
6
7 require (
8 charm.land/bubbles/v2 v2.2.1
9 charm.land/bubbletea/v2 v2.0.9
10 charm.land/lipgloss/v2 v2.0.6
11 git.sr.ht/~jackmordaunt/go-toast/v2 v2.0.3
12 github.com/BurntSushi/toml v1.6.0
13 github.com/Microsoft/go-winio v0.6.2
14 github.com/UserExistsError/conpty v0.1.4
15 github.com/alecthomas/chroma/v2 v2.27.0
16 github.com/atotto/clipboard v0.1.4
17 github.com/aymanbagabas/go-udiff v0.4.1
18 github.com/bmatcuk/doublestar/v4 v4.10.0
19 github.com/charmbracelet/colorprofile v0.4.3
20 github.com/charmbracelet/x/ansi v0.11.8
21 github.com/creack/pty v1.1.24
22 github.com/fsnotify/fsnotify v1.9.0
23 github.com/godbus/dbus/v5 v5.2.2
24 github.com/gorilla/websocket v1.5.3
25 github.com/joho/godotenv v1.5.1
26 github.com/kevinburke/ssh_config v1.6.0
27 github.com/klauspost/compress v1.18.4
28 github.com/larksuite/oapi-sdk-go/v3 v3.11.0
29 github.com/mattn/go-runewidth v0.0.29
30 github.com/modelcontextprotocol/go-sdk v1.8.0-pre.2
31 github.com/pkg/sftp v1.13.11
32 github.com/rivo/uniseg v0.4.7
33 github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
34 github.com/santhosh-tekuri/jsonschema/v6 v6.0.3
35 github.com/sky-valley/pi v0.84.20
36 github.com/spf13/pflag v1.0.10
37 github.com/tree-sitter/go-tree-sitter v0.25.0
38 github.com/tree-sitter/tree-sitter-javascript v0.25.0
39 github.com/tree-sitter/tree-sitter-python v0.25.0
40 github.com/tree-sitter/tree-sitter-rust v0.24.2
41 github.com/tree-sitter/tree-sitter-typescript v0.23.2
42 github.com/yuin/goldmark v1.8.6
43 github.com/zalando/go-keyring v0.2.8
44 go.etcd.io/bbolt v1.5.0
45 go.uber.org/goleak v1.3.0
46 golang.org/x/crypto v0.56.0
47 golang.org/x/image v0.45.0
48 golang.org/x/mod v0.41.0
49 golang.org/x/net v0.58.0
50 golang.org/x/oauth2 v0.37.0
51 golang.org/x/sys v0.48.0
52 golang.org/x/term v0.45.0
53 golang.org/x/text v0.41.0
54 gopkg.in/yaml.v3 v3.0.1
55 modernc.org/sqlite v1.58.0
56 mvdan.cc/sh/v3 v3.14.0
57 )
58
59 require (
60 github.com/charmbracelet/ultraviolet v0.0.0-20260811164956-006e29f97886 // indirect
61 github.com/charmbracelet/x/term v0.2.2 // indirect
62 github.com/charmbracelet/x/termios v0.1.1 // indirect
63 github.com/charmbracelet/x/windows v0.2.2 // indirect
64 github.com/clipperhouse/displaywidth v0.11.0 // indirect
65 github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
66 github.com/danieljoos/wincred v1.2.3 // indirect
67 github.com/dlclark/regexp2/v2 v2.2.1 // indirect
68 github.com/dustin/go-humanize v1.0.1 // indirect
69 github.com/go-ole/go-ole v1.3.0 // indirect
70 github.com/gogo/protobuf v1.3.2 // indirect
71 github.com/google/jsonschema-go v0.4.3 // indirect
72 github.com/google/uuid v1.6.0 // indirect
73 github.com/kr/fs v0.1.0 // indirect
74 github.com/lucasb-eyer/go-colorful v1.4.1 // indirect
75 github.com/mattn/go-isatty v0.0.24 // indirect
76 github.com/mattn/go-pointer v0.0.1 // indirect
77 github.com/muesli/cancelreader v0.2.2 // indirect
78 github.com/ncruces/go-strftime v1.0.0 // indirect
79 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
80 github.com/segmentio/asm v1.1.3 // indirect
81 github.com/segmentio/encoding v0.5.4 // indirect
82 github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
83 github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
84 golang.org/x/sync v0.22.0 // indirect
85 golang.org/x/time v0.15.0 // indirect
86 modernc.org/libc v1.75.6 // indirect
87 modernc.org/mathutil v1.7.1 // indirect
88 modernc.org/memory v1.12.1 // indirect
89 )
90
90 lines Plain Text