-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat!: cleanup Signed-off-by: Carlos Alexandro Becker <[email protected]> * more cleanup Signed-off-by: Carlos Alexandro Becker <[email protected]> * fix: more cleanup Signed-off-by: Carlos Alexandro Becker <[email protected]> * fix: more cleanup --------- Signed-off-by: Carlos Alexandro Becker <[email protected]>
- Loading branch information
Showing
27 changed files
with
692 additions
and
2,962 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,73 @@ | ||
module github.com/charmbracelet/glow | ||
|
||
go 1.17 | ||
go 1.21.4 | ||
|
||
require ( | ||
github.com/adrg/xdg v0.4.0 | ||
github.com/atotto/clipboard v0.1.4 | ||
github.com/charmbracelet/bubbles v0.15.0 | ||
github.com/charmbracelet/bubbletea v0.25.0 | ||
github.com/charmbracelet/charm v0.8.7 | ||
github.com/charmbracelet/glamour v0.6.0 | ||
github.com/charmbracelet/lipgloss v0.6.0 | ||
github.com/charmbracelet/x/editor v0.0.0-20231116172829-450eedbca1ab | ||
github.com/caarlos0/env/v11 v11.0.1 | ||
github.com/charmbracelet/bubbles v0.18.0 | ||
github.com/charmbracelet/bubbletea v0.26.4 | ||
github.com/charmbracelet/glamour v0.6.1-0.20230519131405-7528eaad6620 | ||
github.com/charmbracelet/lipgloss v0.11.1-0.20240608174255-33b3263db7dd | ||
github.com/charmbracelet/log v0.4.0 | ||
github.com/charmbracelet/x/editor v0.0.0-20240625164403-2627ec16405d | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/mattn/go-runewidth v0.0.15 | ||
github.com/meowgorithm/babyenv v1.3.1 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/muesli/gitcha v0.2.0 | ||
github.com/muesli/go-app-paths v0.2.2 | ||
github.com/muesli/reflow v0.3.0 | ||
github.com/muesli/termenv v0.15.2 | ||
github.com/sahilm/fuzzy v0.1.0 | ||
github.com/segmentio/ksuid v1.0.4 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/viper v1.14.0 | ||
golang.org/x/sys v0.17.0 | ||
golang.org/x/term v0.15.0 | ||
golang.org/x/text v0.14.0 | ||
github.com/sahilm/fuzzy v0.1.1 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/spf13/viper v1.15.0 | ||
golang.org/x/sys v0.21.0 | ||
golang.org/x/term v0.21.0 | ||
golang.org/x/text v0.16.0 | ||
) | ||
|
||
require ( | ||
github.com/alecthomas/chroma v0.10.0 // indirect | ||
github.com/alecthomas/chroma/v2 v2.8.0 // indirect | ||
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect | ||
github.com/aymerick/douceur v0.2.0 // indirect | ||
github.com/calmh/randomart v1.1.0 // indirect | ||
github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/charmbracelet/x/ansi v0.1.2 // indirect | ||
github.com/charmbracelet/x/input v0.1.2 // indirect | ||
github.com/charmbracelet/x/term v0.1.1 // indirect | ||
github.com/charmbracelet/x/windows v0.1.2 // indirect | ||
github.com/dlclark/regexp2 v1.4.0 // indirect | ||
github.com/erikgeiser/coninput v0.0.0-20211004153227-1c3628e74d0f // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/go-logfmt/logfmt v0.6.0 // indirect | ||
github.com/gorilla/css v1.0.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/magiconair/properties v1.8.6 // indirect | ||
github.com/mattn/go-isatty v0.0.18 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-localereader v0.0.1 // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.21 // indirect | ||
github.com/mikesmitty/edkey v0.0.0-20170222072505-3356ea4e686a // indirect | ||
github.com/microcosm-cc/bluemonday v1.0.25 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect | ||
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect | ||
github.com/muesli/cancelreader v0.2.2 // indirect | ||
github.com/muesli/sasquatch v0.0.0-20200811221207-66979d92330a // indirect | ||
github.com/olekukonko/tablewriter v0.0.5 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/sabhiram/go-gitignore v0.0.0-20180611051255-d3107576ba94 // indirect | ||
github.com/spf13/afero v1.9.2 // indirect | ||
github.com/spf13/afero v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/yuin/goldmark v1.5.2 // indirect | ||
github.com/yuin/goldmark-emoji v1.0.1 // indirect | ||
golang.org/x/crypto v0.17.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect | ||
github.com/yuin/goldmark v1.5.4 // indirect | ||
github.com/yuin/goldmark-emoji v1.0.2 // indirect | ||
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.