/**
 * **halibut** - Yet another free document preparation system
 *
 * @domain `chiark.greenend.org.uk/halibut`
 * @programs `halibut`
 * @version `1.3.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install halibut`
 * @name `halibut`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.halibut
 * // Or access via domain
 * const samePkg = pantry.chiarkgreenendorgukhalibut
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "halibut"
 * console.log(pkg.description) // "Yet another free document preparation system"
 * console.log(pkg.programs)    // ["halibut"]
 * console.log(pkg.versions[0]) // "1.3.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/chiark-greenend-org-uk/halibut.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const halibutPackage: {
  /**
   * The display name of this package.
   */
  name: 'halibut';
  /**
   * The canonical domain name for this package.
   */
  domain: 'chiark.greenend.org.uk/halibut';
  /**
   * Brief description of what this package does.
   */
  description: 'Yet another free document preparation system';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/chiark.greenend.org.uk/halibut/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install halibut';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['halibut'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.3.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type HalibutPackage = typeof halibutPackage