UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.31 kB
/** * **geos-config** - Geometry Engine, Open Source * * @domain `libgeos.org` * @programs `geos-config` * @version `3.13.1` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install geos-config` * @name `geos-config` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.geosconfig * // Or access via domain * const samePkg = pantry.libgeosorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "geos-config" * console.log(pkg.description) // "Geometry Engine, Open Source" * console.log(pkg.programs) // ["geos-config"] * console.log(pkg.versions[0]) // "3.13.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libgeos-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const geosconfigPackage: { /** * The display name of this package. */ name: 'geos-config'; /** * The canonical domain name for this package. */ domain: 'libgeos.org'; /** * Brief description of what this package does. */ description: 'Geometry Engine, Open Source'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libgeos.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 geos-config'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['geos-config']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.13.1', '3.13.0', '3.12.3', '3.12.2', '3.12.1', '3.12.0', '3.11.5', '3.11.4', '3.11.3', '3.11.2', '3.10.7', '3.10.6', '3.9.6', '3.9.5', '3.8.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) geos-config -- $SHELL -i'; launchpadInstallCommand: 'launchpad install geos-config' }; export type GeosconfigPackage = typeof geosconfigPackage