package = "arweave"
version = "0.0.1-1"
source = {
   url = "git+https://github.com/crookse/arweave-lua"
}
description = {
   summary = "Slick Lua tooling for building in the Arweave ecosystem",
   detailed = [[
      Ships with slick tooling so you can develop your Arweave Lua modules with
      confidence.
   ]],
   homepage = "https://github.com/crookse/arweave-lua",
   license = "GPL-3.0"
}

dependencies = {
   "lua >= 5.1",
   "busted ~> 2"
}

build = {
   type = "builtin",

   modules = {
      ["arweave"] = "src/mod.lua"
   },

  install = {
    bin = {
      ['arweave'] = 'bin/arweave',
      ['arweave-fmt'] = 'bin/arweave-luaformatter-1.3.6'
    }
  }
}
