/**
 * **cpanm** - cpanminus - get, unpack, build and install modules from CPAN
 *
 * @domain `cpanmin.us`
 * @programs `cpanm`
 * @version `1.7048.0` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install cpanm`
 * @aliases `cpanm`
 * @dependencies `perl.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.cpanm
 * // Or access via domain
 * const samePkg = pantry.cpanminus
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "cpanmin.us"
 * console.log(pkg.description) // "cpanminus - get, unpack, build and install modu..."
 * console.log(pkg.programs)    // ["cpanm"]
 * console.log(pkg.versions[0]) // "1.7048.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/cpanmin-us.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cpanmPackage: {
  /**
   * The display name of this package.
   */
  name: 'cpanmin.us';
  /**
   * The canonical domain name for this package.
   */
  domain: 'cpanmin.us';
  /**
   * Brief description of what this package does.
   */
  description: 'cpanminus - get, unpack, build and install modules from CPAN';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cpanmin.us/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install cpanm';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cpanm'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['perl.org'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.7048.0', '1.7047.0', '1.7046.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['cpanm']
};
export type CpanmPackage = typeof cpanmPackage