/**
 * **mergestat** - Query git repositories with SQL. Generate reports, perform status checks, analyze codebases. 🔍 📊
 *
 * @domain `mergestat.com/mergestat-lite`
 * @programs `mergestat`
 * @version `0.6.2` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install mergestat`
 * @aliases `mergestat`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.mergestat
 * // Or access via domain
 * const samePkg = pantry.mergestatcommergestatlite
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "mergestat-lite"
 * console.log(pkg.description) // "Query git repositories with SQL. Generate repor..."
 * console.log(pkg.programs)    // ["mergestat"]
 * console.log(pkg.versions[0]) // "0.6.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/mergestat-com/mergestat-lite.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const mergestatPackage: {
  /**
   * The display name of this package.
   */
  name: 'mergestat-lite';
  /**
   * The canonical domain name for this package.
   */
  domain: 'mergestat.com/mergestat-lite';
  /**
   * Brief description of what this package does.
   */
  description: 'Query git repositories with SQL. Generate reports, perform status checks, analyze codebases. 🔍 📊';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mergestat.com/mergestat-lite/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/mergestat/mergestat-lite';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install mergestat';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mergestat'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.6.2', '0.6.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['mergestat']
};
export type MergestatPackage = typeof mergestatPackage