/** * **lua** - Powerful, lightweight programming language * * @domain `lua.org` * @programs `lua`, `luac` * @version `5.4.8` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install lua.org` * @homepage https://www.lua.org/ * @dependencies `gnu.org/readline` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.luaorg * console.log(pkg.name) // "lua" * console.log(pkg.description) // "Powerful, lightweight programming language" * console.log(pkg.programs) // ["lua", "luac"] * console.log(pkg.versions[0]) // "5.4.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/lua-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const luaorgPackage: { /** * The display name of this package. */ name: 'lua'; /** * The canonical domain name for this package. */ domain: 'lua.org'; /** * Brief description of what this package does. */ description: 'Powerful, lightweight programming language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lua.org/package.yml'; homepageUrl: 'https://www.lua.org/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install lua.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +lua.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install lua.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lua', 'luac']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnu.org/readline']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.4.8', '5.4.7', '5.4.6', '5.4.4']; aliases: readonly [] }; export type LuaorgPackage = typeof luaorgPackage