UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

61 lines 1.95 kB
/** * **gnu.org/findutils** - pkgx package * * @domain `gnu.org/findutils` * @programs `find`, `locate`, `updatedb`, `xargs` * @version `4.10.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gnu.org/findutils` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gnuorgfindutils * console.log(pkg.name) // "gnu.org/findutils" * console.log(pkg.programs) // ["find", "locate", ...] * console.log(pkg.versions[0]) // "4.10.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/findutils.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gnuorgfindutilsPackage: { /** * The display name of this package. */ name: 'gnu.org/findutils'; /** * The canonical domain name for this package. */ domain: 'gnu.org/findutils'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/findutils/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gnu.org/findutils'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['find', 'locate', 'updatedb', 'xargs']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.10.0', '4.9.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gnu.org/findutils -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gnu.org/findutils' }; export type GnuorgfindutilsPackage = typeof gnuorgfindutilsPackage