UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.1 kB
/** * **idn** - International domain name library * * @domain `gnu.org/libidn` * @programs `idn` * @version `1.43.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install idn` * @name `idn` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.idn * // Or access via domain * const samePkg = pantry.gnuorglibidn * console.log(pkg === samePkg) // true * console.log(pkg.name) // "idn" * console.log(pkg.description) // "International domain name library" * console.log(pkg.programs) // ["idn"] * console.log(pkg.versions[0]) // "1.43.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnu-org/libidn.md * @see https://ts-pkgx.netlify.app/usage */ export declare const idnPackage: { /** * The display name of this package. */ name: 'idn'; /** * The canonical domain name for this package. */ domain: 'gnu.org/libidn'; /** * Brief description of what this package does. */ description: 'International domain name library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/libidn/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install idn'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['idn']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.43.0', '1.42.0', '1.41.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) idn -- $SHELL -i'; launchpadInstallCommand: 'launchpad install idn' }; export type IdnPackage = typeof idnPackage