nui.nvim-dev-1.rockspec 596 B

12345678910111213141516171819202122232425262728
  1. rockspec_format = "3.0"
  2. package = "nui.nvim"
  3. version = "dev-1"
  4. source = {
  5. url = "git+https://github.com/MunifTanjim/nui.nvim.git",
  6. tag = nil,
  7. }
  8. description = {
  9. summary = "UI Component Library for Neovim.",
  10. detailed = [[
  11. UI Component Library for Neovim.
  12. ]],
  13. license = "MIT",
  14. homepage = "https://github.com/MunifTanjim/nui.nvim",
  15. issues_url = "https://github.com/MunifTanjim/nui.nvim/issues",
  16. maintainer = "Munif Tanjim (https://muniftanjim.dev)",
  17. labels = {
  18. "neovim",
  19. },
  20. }
  21. build = {
  22. type = "builtin",
  23. }
  24. test = {
  25. type = "command",
  26. command = "scripts/test.sh",
  27. }