/** * **rmz** - Modern, performance focused unix commands * * @domain `crates.io/rmz` * @programs `rmz` * @version `3.1.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/rmz` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiormz * console.log(pkg.name) // "rmz" * console.log(pkg.description) // "Modern, performance focused unix commands" * console.log(pkg.programs) // ["rmz"] * console.log(pkg.versions[0]) // "3.1.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/rmz.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiormzPackage: { /** * The display name of this package. */ name: 'rmz'; /** * The canonical domain name for this package. */ domain: 'crates.io/rmz'; /** * Brief description of what this package does. */ description: 'Modern, performance focused unix commands'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/rmz/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/supercilex/fuc'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/rmz'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/rmz -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/rmz'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rmz']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.1.1', '3.1.0', '3.0.1', '3.0.0', '2.2.0', '2.1.0']; aliases: readonly [] }; export type CratesiormzPackage = typeof cratesiormzPackage