nt

A sensible note-taking program
git clone git://git.laack.co/nt.git
Log | Files | Refs | README

go.mod (427B)


      1 module nt
      2 
      3 go 1.26.3
      4 
      5 require (
      6 	github.com/gdamore/tcell/v2 v2.8.1
      7 	github.com/rivo/tview v0.42.0
      8 )
      9 
     10 require (
     11 	github.com/gdamore/encoding v1.0.1 // indirect
     12 	github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
     13 	github.com/mattn/go-runewidth v0.0.16 // indirect
     14 	github.com/rivo/uniseg v0.4.7 // indirect
     15 	golang.org/x/sys v0.29.0 // indirect
     16 	golang.org/x/term v0.28.0 // indirect
     17 	golang.org/x/text v0.21.0 // indirect
     18 )