/**
 * **luarocks** - LuaRocks is the package manager for the Lua programming language.
 *
 * @domain `luarocks.org`
 * @programs `luarocks`, `luarocks-admin`
 * @version `3.12.1` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +luarocks.org -- $SHELL -i`
 * @aliases `luarocks`
 * @dependencies `lua.org`, `info-zip.org/unzip`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.luarocks
 * // Or access via domain
 * const samePkg = pantry.luarocksorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "luarocks.org"
 * console.log(pkg.description) // "LuaRocks is the package manager for the Lua pro..."
 * console.log(pkg.programs)    // ["luarocks", "luarocks-admin"]
 * console.log(pkg.versions[0]) // "3.12.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/luarocks-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const luarocksPackage: {
  /**
   * The display name of this package.
   */
  name: 'luarocks.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'luarocks.org';
  /**
   * Brief description of what this package does.
   */
  description: 'LuaRocks is the package manager for the Lua programming language.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/luarocks.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +luarocks.org -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['luarocks', 'luarocks-admin'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['lua.org', 'info-zip.org/unzip'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.12.1', '3.12.0', '3.11.1', '3.11.0', '3.10.0', '3.9.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['luarocks']
};
export type LuarocksPackage = typeof luarocksPackage