/** * **ncdu** - NCurses Disk Usage * * @domain `dev.yorhel.nl/ncdu` * @programs `ncdu` * @version `1.22.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install dev.yorhel.nl/ncdu` * @homepage https://dev.yorhel.nl/ncdu * @dependencies `invisible-island.net/ncurses` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.devyorhelnlncdu * console.log(pkg.name) // "ncdu" * console.log(pkg.description) // "NCurses Disk Usage" * console.log(pkg.programs) // ["ncdu"] * console.log(pkg.versions[0]) // "1.22.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dev-yorhel-nl/ncdu.md * @see https://ts-pkgx.netlify.app/usage */ export declare const devyorhelnlncduPackage: { /** * The display name of this package. */ name: 'ncdu'; /** * The canonical domain name for this package. */ domain: 'dev.yorhel.nl/ncdu'; /** * Brief description of what this package does. */ description: 'NCurses Disk Usage'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dev.yorhel.nl/ncdu/package.yml'; homepageUrl: 'https://dev.yorhel.nl/ncdu'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dev.yorhel.nl/ncdu'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +dev.yorhel.nl/ncdu -- $SHELL -i'; launchpadInstallCommand: 'launchpad install dev.yorhel.nl/ncdu'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ncdu']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['invisible-island.net/ncurses']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.22.0', '1.21.0', '1.20.0', '1.19.0', '1.18.1']; aliases: readonly [] }; export type DevyorhelnlncduPackage = typeof devyorhelnlncduPackage