| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 1 | module sketch.dev |
| 2 | |
| 3 | go 1.24.2 |
| 4 | |
| 5 | require ( |
| 6 | github.com/creack/pty v1.1.24 |
| 7 | github.com/evanw/esbuild v0.25.2 |
| 8 | github.com/fatih/color v1.18.0 |
| 9 | github.com/google/go-cmp v0.7.0 |
| 10 | github.com/richardlehane/crock32 v1.0.1 |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 11 | go.skia.org/infra v0.0.0-20250421160028-59e18403fd4a |
| 12 | golang.org/x/crypto v0.37.0 |
| Josh Bleecher Snyder | 833a0f8 | 2025-04-24 18:39:36 +0000 | [diff] [blame] | 13 | golang.org/x/net v0.39.0 |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 14 | golang.org/x/sync v0.13.0 |
| 15 | golang.org/x/term v0.31.0 |
| Josh Bleecher Snyder | 833a0f8 | 2025-04-24 18:39:36 +0000 | [diff] [blame] | 16 | golang.org/x/tools v0.32.0 |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 17 | mvdan.cc/sh/v3 v3.11.0 |
| 18 | ) |
| 19 | |
| 20 | require ( |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 21 | github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect |
| Josh Bleecher Snyder | a0801ad | 2025-04-25 19:34:53 +0000 | [diff] [blame] | 22 | github.com/dustin/go-humanize v1.0.1 // indirect |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 23 | github.com/gliderlabs/ssh v0.3.8 // indirect |
| Sean McCullough | 4854c65 | 2025-04-24 18:37:02 -0700 | [diff] [blame] | 24 | github.com/kevinburke/ssh_config v1.2.0 // indirect |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 25 | github.com/mattn/go-colorable v0.1.13 // indirect |
| 26 | github.com/mattn/go-isatty v0.0.20 // indirect |
| Philip Zeyliger | 99a9a02 | 2025-04-27 15:15:25 +0000 | [diff] [blame] | 27 | github.com/oklog/ulid/v2 v2.1.0 // indirect |
| Josh Bleecher Snyder | 4f84ab7 | 2025-04-22 16:40:54 -0700 | [diff] [blame] | 28 | github.com/sashabaranov/go-openai v1.38.2 // indirect |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 29 | golang.org/x/mod v0.24.0 // indirect |
| Sean McCullough | baa2b59 | 2025-04-23 10:40:08 -0700 | [diff] [blame] | 30 | golang.org/x/sys v0.32.0 // indirect |
| 31 | golang.org/x/text v0.24.0 // indirect |
| Earl Lee | 2e463fb | 2025-04-17 11:22:22 -0700 | [diff] [blame] | 32 | ) |
| Josh Bleecher Snyder | 833a0f8 | 2025-04-24 18:39:36 +0000 | [diff] [blame] | 33 | |
| 34 | tool golang.org/x/tools/cmd/stringer |