/** * **git-tidy** - Tidy up stale git branches. * * @domain `crates.io/git-tidy` * @programs `git-tidy` * @version `2.0.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/git-tidy` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiogittidy * console.log(pkg.name) // "git-tidy" * console.log(pkg.description) // "Tidy up stale git branches." * console.log(pkg.programs) // ["git-tidy"] * console.log(pkg.versions[0]) // "2.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/git-tidy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiogittidyPackage: { /** * The display name of this package. */ name: 'git-tidy'; /** * The canonical domain name for this package. */ domain: 'crates.io/git-tidy'; /** * Brief description of what this package does. */ description: 'Tidy up stale git branches.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/git-tidy/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/drewwyatt/git-tidy'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/git-tidy'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/git-tidy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/git-tidy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-tidy']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.1']; aliases: readonly [] }; export type CratesiogittidyPackage = typeof cratesiogittidyPackage