/** * **ducker** - A slightly quackers Docker TUI based on k9s 🦆 * * @domain `crates.io/ducker` * @programs `ducker` * @version `0.5.5` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/ducker` * @homepage https://crates.io/crates/ducker * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioducker * console.log(pkg.name) // "ducker" * console.log(pkg.description) // "A slightly quackers Docker TUI based on k9s 🦆" * console.log(pkg.programs) // ["ducker"] * console.log(pkg.versions[0]) // "0.5.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/ducker.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesioduckerPackage: { /** * The display name of this package. */ name: 'ducker'; /** * The canonical domain name for this package. */ domain: 'crates.io/ducker'; /** * Brief description of what this package does. */ description: 'A slightly quackers Docker TUI based on k9s 🦆'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ducker/package.yml'; homepageUrl: 'https://crates.io/crates/ducker'; githubUrl: 'https://github.com/robertpsoane/ducker'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/ducker'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/ducker -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/ducker'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ducker']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.5', '0.5.4', '0.5.3', '0.5.2', '0.5.1', '0.5.0', '0.4.2', '0.4.1', '0.4.0', '0.3.1', '0.3.0']; aliases: readonly [] }; export type CratesioduckerPackage = typeof cratesioduckerPackage