blob: 43d302b5cc482f3c09ebe01a61d76a407fc3aeaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
module github.com/mitjafelicijan/hepi
go 1.25.6
require (
github.com/go-faker/faker/v4 v4.7.0
github.com/joho/godotenv v1.5.1
github.com/mattn/go-colorable v0.1.14
github.com/neilotoole/jsoncolor v0.7.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/fatih/color v1.18.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/term v0.14.0 // indirect
golang.org/x/text v0.29.0 // indirect
)
|