mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-24 06:28:34 +01:00
* add label generation api * show location name on labels * add label scan page * dispose of code reader when navigating away from scan page * save label to png * implement code suggestions * fix label padding and margin * update swagger docs * add print from browser dialog Co-authored-by: fidoriel <49869342+fidoriel@users.noreply.github.com> * increase label description font weight * update documentation label file suffix * fix scanner components import * fix linting issues --------- Co-authored-by: fidoriel <49869342+fidoriel@users.noreply.github.com>
80 lines
3.2 KiB
Modula-2
80 lines
3.2 KiB
Modula-2
module github.com/sysadminsmedia/homebox/backend
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
ariga.io/atlas v0.29.1
|
|
entgo.io/ent v0.14.1
|
|
github.com/ardanlabs/conf/v3 v3.2.0
|
|
github.com/containrrr/shoutrrr v0.8.0
|
|
github.com/go-chi/chi/v5 v5.2.0
|
|
github.com/go-playground/validator/v10 v10.23.0
|
|
github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/schema v1.4.1
|
|
github.com/hay-kot/httpkit v0.0.11
|
|
github.com/mattn/go-sqlite3 v1.14.24
|
|
github.com/olahol/melody v1.2.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/rs/zerolog v1.33.0
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/swaggo/http-swagger/v2 v2.0.2
|
|
github.com/swaggo/swag v1.16.4
|
|
github.com/yeqown/go-qrcode/v2 v2.2.4
|
|
github.com/yeqown/go-qrcode/writer/standard v1.2.4
|
|
golang.org/x/crypto v0.31.0
|
|
modernc.org/sqlite v1.34.4
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
|
github.com/bmatcuk/doublestar v1.3.4 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/fogleman/gg v1.3.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
github.com/go-openapi/inflect v0.21.0 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
|
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mailru/easyjson v0.9.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
github.com/swaggo/files/v2 v2.0.2 // indirect
|
|
github.com/yeqown/reedsolomon v1.0.0 // indirect
|
|
github.com/zclconf/go-cty v1.16.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250103183323-7d7fa50e5329 // indirect
|
|
golang.org/x/image v0.23.0
|
|
golang.org/x/mod v0.22.0 // indirect
|
|
golang.org/x/net v0.33.0 // indirect
|
|
golang.org/x/sync v0.10.0 // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
golang.org/x/text v0.21.0 // indirect
|
|
golang.org/x/tools v0.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
modernc.org/gc/v3 v3.0.0-20241223112719-96e2e1e4408d // indirect
|
|
modernc.org/libc v1.61.6 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.8.1 // indirect
|
|
modernc.org/strutil v1.2.1 // indirect
|
|
modernc.org/token v1.1.0 // indirect
|
|
)
|