/**
 * **scc** - Sloc, Cloc and Code: scc is a very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go
 *
 * @domain `github.com/boyter/scc`
 * @programs `scc`
 * @version `3.5.0` (10 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install scc`
 * @name `scc`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.scc
 * // Or access via domain
 * const samePkg = pantry.githubcomboyterscc
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "scc"
 * console.log(pkg.description) // "Sloc, Cloc and Code: scc is a very fast accurat..."
 * console.log(pkg.programs)    // ["scc"]
 * console.log(pkg.versions[0]) // "3.5.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/boyter/scc.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const sccPackage: {
  /**
   * The display name of this package.
   */
  name: 'scc';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/boyter/scc';
  /**
   * Brief description of what this package does.
   */
  description: 'Sloc, Cloc and Code: scc is a very fast accurate code counter with complexity calculations and COCOMO estimates written in pure Go';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/boyter/scc/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install scc';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['scc'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.5.0', '3.4.0', '3.3.5', '3.3.4', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.0', '3.1.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type SccPackage = typeof sccPackage