/** * **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 crates.io/bake-rs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiobakers * console.log(pkg.name) // "bake" * 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 cratesiobakersPackage: { /** * The display name of this package. */ name: 'bake'; /** * 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/ali77gh/bake-rs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/bake-rs'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/bake-rs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/bake-rs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bake']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.0']; aliases: readonly [] }; export type CratesiobakersPackage = typeof cratesiobakersPackage