UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.24 kB
/** * **wget** - Internet file retriever * * @domain `gnu.org/wget` * @programs `wget` * @version `1.25.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install wget` * @name `wget` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.wget * // Or access via domain * const samePkg = pantry.gnuorgwget * console.log(pkg === samePkg) // true * console.log(pkg.name) // "wget" * console.log(pkg.description) // "Internet file retriever" * console.log(pkg.programs) // ["wget"] * console.log(pkg.versions[0]) // "1.25.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/wget.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wgetPackage: { /** * The display name of this package. */ name: 'wget'; /** * The canonical domain name for this package. */ domain: 'gnu.org/wget'; /** * Brief description of what this package does. */ description: 'Internet file retriever'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/wget/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wget'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wget']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.25.0', '1.24.5', '1.21.4', '1.21.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) wget -- $SHELL -i'; launchpadInstallCommand: 'launchpad install wget' }; export type WgetPackage = typeof wgetPackage