-
Notifications
You must be signed in to change notification settings - Fork 32
/
go.mod
67 lines (63 loc) · 2.34 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
module github.com/FriendsOfShopware/shopware-cli
go 1.23
require (
dario.cat/mergo v1.0.1
github.com/NYTimes/gziphandler v1.1.1
github.com/bep/godartsass/v2 v2.2.0
github.com/caarlos0/env/v9 v9.0.0
github.com/doutorfinancas/go-mad v0.0.0-20240205120830-463c1e9760f0
github.com/evanw/esbuild v0.24.0
github.com/friendsofshopware/go-shopware-admin-api-sdk v0.0.0-20231210091330-92f38f1ae77c
github.com/google/uuid v1.6.0
github.com/gorilla/schema v1.4.1
github.com/invopop/jsonschema v0.12.0
github.com/joho/godotenv v1.5.1
github.com/manifoldco/promptui v0.9.0
github.com/microcosm-cc/bluemonday v1.0.27
github.com/olekukonko/tablewriter v0.0.5
github.com/otiai10/copy v1.14.0
github.com/sashabaranov/go-openai v1.35.6
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.9.0
github.com/tetratelabs/wazero v1.8.1
github.com/vulcand/oxy/v2 v2.0.1
github.com/wI2L/jsondiff v0.6.0
github.com/wk8/go-ordered-map/v2 v2.1.8
github.com/yuin/goldmark v1.7.8
go.uber.org/zap v1.27.0
golang.org/x/text v0.20.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/gjson v1.17.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
golang.org/x/sync v0.9.0 // indirect
)
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/chzyer/readline v1.5.1 // indirect
github.com/cli/safeexec v1.0.1 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jaswdr/faker v1.19.1 // indirect
github.com/klauspost/compress v1.17.11
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.31.0
golang.org/x/oauth2 v0.15.0 // indirect
golang.org/x/sys v0.27.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)