UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.47 kB
/** * **proj** - PROJ - Cartographic Projections and Coordinate Transformations Library * * @domain `proj.org` * @programs `proj` * @version `9.6.2` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install proj` * @name `proj` * @dependencies `simplesystems.org/libtiff`, `sqlite.org`, `curl.se` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.proj * // Or access via domain * const samePkg = pantry.projorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "proj" * console.log(pkg.description) // "PROJ - Cartographic Projections and Coordinate ..." * console.log(pkg.programs) // ["proj"] * console.log(pkg.versions[0]) // "9.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/proj-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const projPackage: { /** * The display name of this package. */ name: 'proj'; /** * The canonical domain name for this package. */ domain: 'proj.org'; /** * Brief description of what this package does. */ description: 'PROJ - Cartographic Projections and Coordinate Transformations Library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/proj.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install proj'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['proj']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['simplesystems.org/libtiff', 'sqlite.org', 'curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['9.6.2', '9.6.1', '9.6.0', '9.5.1', '9.5.0', '9.4.1', '9.4.0', '9.3.1', '9.3.0', '9.2.1', '9.2.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) proj -- $SHELL -i'; launchpadInstallCommand: 'launchpad install proj' }; export type ProjPackage = typeof projPackage