/**
 * **bake** - Simple and easy to use "script runner" written in Rust.
 *
 * @domain `crates.io/bake-rs`
 * @programs `bake`
 * @version `1.2.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install bake`
 * @aliases `bake`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.bake
 * // Or access via domain
 * const samePkg = pantry.cratesiobakers
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "bake-rs"
 * console.log(pkg.description) // "Simple and easy to use "script runner" written ..."
 * console.log(pkg.programs)    // ["bake"]
 * console.log(pkg.versions[0]) // "1.2.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/crates-io/bake-rs.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const bakePackage: {
  /**
   * The display name of this package.
   */
  name: 'bake-rs';
  /**
   * The canonical domain name for this package.
   */
  domain: 'crates.io/bake-rs';
  /**
   * Brief description of what this package does.
   */
  description: 'Simple and easy to use "script runner" written in Rust.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/bake-rs/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install bake';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['bake'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.2.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['bake']
};
export type BakePackage = typeof bakePackage