/**
 * **shellcheck** - ShellCheck, a static analysis tool for shell scripts
 *
 * @domain `shellcheck.net`
 * @programs `shellcheck`
 * @version `0.10.0` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install shellcheck`
 * @aliases `shellcheck`
 * @dependencies `sourceware.org/libffi@3`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.shellcheck
 * // Or access via domain
 * const samePkg = pantry.shellchecknet
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "shellcheck.net"
 * console.log(pkg.description) // "ShellCheck, a static analysis tool for shell sc..."
 * console.log(pkg.programs)    // ["shellcheck"]
 * console.log(pkg.versions[0]) // "0.10.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/shellcheck-net.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const shellcheckPackage: {
  /**
   * The display name of this package.
   */
  name: 'shellcheck.net';
  /**
   * The canonical domain name for this package.
   */
  domain: 'shellcheck.net';
  /**
   * Brief description of what this package does.
   */
  description: 'ShellCheck, a static analysis tool for shell scripts';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/shellcheck.net/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install shellcheck';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['shellcheck'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['sourceware.org/libffi@3'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.10.0', '0.9.0', '0.8.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['shellcheck']
};
export type ShellcheckPackage = typeof shellcheckPackage