/**
 * **watchexec** - Executes commands in response to file modifications
 *
 * @domain `watchexec.github.io`
 * @programs `watchexec`
 * @version `2.3.2` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install watchexec`
 * @aliases `watchexec`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.watchexec
 * // Or access via domain
 * const samePkg = pantry.watchexecgithubio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "watchexec.github.io"
 * console.log(pkg.description) // "Executes commands in response to file modificat..."
 * console.log(pkg.programs)    // ["watchexec"]
 * console.log(pkg.versions[0]) // "2.3.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/watchexec-github-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const watchexecPackage: {
  /**
   * The display name of this package.
   */
  name: 'watchexec.github.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'watchexec.github.io';
  /**
   * Brief description of what this package does.
   */
  description: 'Executes commands in response to file modifications';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/watchexec.github.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install watchexec';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['watchexec'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.3.2', '2.3.1', '2.3.0', '2.2.1', '2.2.0', '2.1.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['watchexec']
};
export type WatchexecPackage = typeof watchexecPackage