Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
notecard-schema/
dist/
bin/
notehub/doc/

.DS_Store
.DS_Store
2 changes: 2 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ builds:

env:
- CGO_ENABLED=0

goos:
- linux
goarch:
Expand Down Expand Up @@ -60,6 +61,7 @@ builds:

env:
- CGO_ENABLED=1

goos:
- windows
- darwin
Expand Down
68 changes: 53 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,71 @@ replace github.com/blues/note-cli/lib => ./lib
require (
github.com/blues/note-cli/lib v0.0.0-20251120160051-d509bdf52531
github.com/blues/note-go v1.9.0
github.com/blues/notehub-go v0.0.3
github.com/charmbracelet/huh v1.0.0
github.com/fatih/color v1.18.0
github.com/peterh/liner v1.2.2
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
github.com/spf13/viper v1.21.0
)

require (
github.com/clipperhouse/stringish v0.1.1 // indirect
github.com/clipperhouse/uax29/v2 v2.5.0 // indirect
github.com/creack/goselect v0.1.3 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/catppuccin/go v0.3.0 // indirect
github.com/charmbracelet/bubbles v0.21.1-0.20250623103423-23b8fd6302d7 // indirect
github.com/charmbracelet/bubbletea v1.3.6 // indirect
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
github.com/charmbracelet/lipgloss v1.1.0 // indirect
github.com/charmbracelet/x/ansi v0.9.3 // indirect
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
github.com/charmbracelet/x/exp/strings v0.0.0-20240722160745-212f7b056ed0 // indirect
github.com/charmbracelet/x/term v0.2.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/creack/goselect v0.1.2 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/stretchr/testify v1.11.1 // indirect
github.com/tklauser/numcpus v0.11.0 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mitchellh/hashstructure/v2 v2.0.2 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sagikazarmark/locafero v0.11.0 // indirect
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
github.com/spf13/afero v1.15.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
periph.io/x/conn/v3 v3.7.2 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/text v0.28.0 // indirect
gopkg.in/validator.v2 v2.0.1 // indirect
periph.io/x/conn/v3 v3.7.0 // indirect
)

require (
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/golang/snappy v1.0.0
github.com/lufia/plan9stats v0.0.0-20251013123823-9fd1530e3ec3 // indirect
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/golang/snappy v0.0.4
github.com/lufia/plan9stats v0.0.0-20240513124658-fba389f38bae // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
github.com/shirou/gopsutil/v3 v3.24.5 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/shirou/gopsutil/v3 v3.24.4 // indirect
github.com/shoenig/go-m1cpu v0.1.7 // indirect
github.com/tklauser/go-sysconf v0.3.16 // indirect
go.bug.st/serial v1.6.4
golang.org/x/sys v0.40.0 // indirect
periph.io/x/host/v3 v3.8.5 // indirect
github.com/spf13/cobra v1.10.2
github.com/tklauser/go-sysconf v0.3.14 // indirect
go.bug.st/serial v1.6.2
golang.org/x/sys v0.34.0 // indirect
periph.io/x/host/v3 v3.8.2 // indirect
)
191 changes: 159 additions & 32 deletions go.sum

Large diffs are not rendered by default.

Loading
Loading