UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

56 lines 1.98 kB
/** * **sourceware.org/libffi** - A portable foreign-function interface library. * * @domain `sourceware.org/libffi` * @version `3.5.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install sourceware.org/libffi` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sourcewareorglibffi * console.log(pkg.name) // "sourceware.org/libffi" * console.log(pkg.description) // "A portable foreign-function interface library." * console.log(pkg.versions[0]) // "3.5.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sourceware-org/libffi.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sourcewareorglibffiPackage: { /** * The display name of this package. */ name: 'sourceware.org/libffi'; /** * The canonical domain name for this package. */ domain: 'sourceware.org/libffi'; /** * Brief description of what this package does. */ description: 'A portable foreign-function interface library.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceware.org/libffi/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sourceware.org/libffi'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.2', '3.5.1', '3.5.0', '3.4.8', '3.4.7', '3.4.6', '3.4.5', '3.4.4', '3.4.3']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sourceware.org/libffi -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sourceware.org/libffi' }; export type SourcewareorglibffiPackage = typeof sourcewareorglibffiPackage