UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2.01 kB
/** * **cfitsio** - pkgx package * * @domain `heasarc.gsfc.nasa.gov/cfitsio` * @version `4.6.2` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +heasarc.gsfc.nasa.gov/cfitsio -- $SHELL -i` * @dependencies `darwin:zlib.net` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.heasarcgsfcnasagovcfitsio * console.log(pkg.name) // "cfitsio" * console.log(pkg.versions[0]) // "4.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/heasarc-gsfc-nasa-gov/cfitsio.md * @see https://ts-pkgx.netlify.app/usage */ export declare const heasarcgsfcnasagovcfitsioPackage: { /** * The display name of this package. */ name: 'cfitsio'; /** * The canonical domain name for this package. */ domain: 'heasarc.gsfc.nasa.gov/cfitsio'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/heasarc.gsfc.nasa.gov/cfitsio/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +heasarc.gsfc.nasa.gov/cfitsio -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['darwin:zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.6.2', '4.6.0', '4.5.0', '4.4.1', '4.4.0', '4.3.1', '4.3.0', '4.2.0']; aliases: readonly [] }; export type HeasarcgsfcnasagovcfitsioPackage = typeof heasarcgsfcnasagovcfitsioPackage