/** * **diskus** - A minimal, fast alternative to 'du -sh' * * @domain `crates.io/diskus` * @programs `diskus` * @version `0.9.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/diskus` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiodiskus * console.log(pkg.name) // "diskus" * console.log(pkg.description) // "A minimal, fast alternative to 'du -sh'" * console.log(pkg.programs) // ["diskus"] * console.log(pkg.versions[0]) // "0.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/diskus.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiodiskusPackage: { /** * The display name of this package. */ name: 'diskus'; /** * The canonical domain name for this package. */ domain: 'crates.io/diskus'; /** * Brief description of what this package does. */ description: 'A minimal, fast alternative to \'du -sh\''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/diskus/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/sharkdp/diskus'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/diskus'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/diskus -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/diskus'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['diskus']; 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.9.0', '0.8.0', '0.7.0']; aliases: readonly [] }; export type CratesiodiskusPackage = typeof cratesiodiskusPackage