/** * **duf** - Disk Usage/Free Utility - a better 'df' alternative * * @domain `github.com/muesli/duf` * @programs `duf` * @version `0.9.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/muesli/duf` * @buildDependencies `go.dev@~1.23` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcommuesliduf * console.log(pkg.name) // "duf" * console.log(pkg.description) // "Disk Usage/Free Utility - a better 'df' alterna..." * console.log(pkg.programs) // ["duf"] * console.log(pkg.versions[0]) // "0.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/muesli/duf.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dufPackage: { /** * The display name of this package. */ name: 'duf'; /** * The canonical domain name for this package. */ domain: 'github.com/muesli/duf'; /** * Brief description of what this package does. */ description: 'Disk Usage/Free Utility - a better \'df\' alternative'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/muesli/duf/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/muesli/duf'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/muesli/duf'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/muesli/duf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/muesli/duf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['duf']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.23']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.1', '0.9.0', '0.8.1']; aliases: readonly [] }; export type DufPackage = typeof dufPackage