// The example is its own module so its go-chart dependency (and freetype / // x/image) stays out of the kjol module — kjol's engine packages are // stdlib-only. kjol is resolved locally via the replace below (no publish step). module kjolwebsite go 1.26.3 require ( github.com/wcharczuk/go-chart/v2 v2.1.2 kjol v0.0.0 ) require ( github.com/dlclark/regexp2/v2 v2.2.1 // indirect github.com/dop251/goja v0.0.0-20260618133527-c9b2ea77db59 // indirect github.com/evanw/esbuild v0.28.0 // indirect github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect github.com/tdewolff/minify/v2 v2.24.13 // indirect github.com/tdewolff/parse/v2 v2.8.13 // indirect golang.org/x/image v0.18.0 // indirect golang.org/x/net v0.55.0 // indirect golang.org/x/sys v0.45.0 // indirect golang.org/x/text v0.37.0 // indirect ) replace kjol => ../..