UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.22 kB
/** * **gdu** - Fast disk usage analyzer with console interface written in Go * * @domain `github.com/dundee/gdu` * @programs `gdu` * @version `5.31.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install gdu` * @name `gdu` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gdu * // Or access via domain * const samePkg = pantry.githubcomdundeegdu * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gdu" * console.log(pkg.description) // "Fast disk usage analyzer with console interface..." * console.log(pkg.programs) // ["gdu"] * console.log(pkg.versions[0]) // "5.31.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/dundee/gdu.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gduPackage: { /** * The display name of this package. */ name: 'gdu'; /** * The canonical domain name for this package. */ domain: 'github.com/dundee/gdu'; /** * Brief description of what this package does. */ description: 'Fast disk usage analyzer with console interface written in Go'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/dundee/gdu/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gdu'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gdu']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.31.0', '5.30.1', '5.30.0', '5.29.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gdu -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gdu' }; export type GduPackage = typeof gduPackage