UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

58 lines 2 kB
/** * **libspatialite** - pkgx package * * @domain `gaia-gis.it/libspatialite` * @version `5.1.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gaia-gis.it/libspatialite -- $SHELL -i` * @dependencies `gaia-gis.it/fossil/freexl`, `libgeos.org`, `git.osgeo.org/gitea/rttopo/librttopo`, ... (+4 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gaiagisitlibspatialite * console.log(pkg.name) // "libspatialite" * console.log(pkg.versions[0]) // "5.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gaia-gis-it/libspatialite.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gaiagisitlibspatialitePackage: { /** * The display name of this package. */ name: 'libspatialite'; /** * The canonical domain name for this package. */ domain: 'gaia-gis.it/libspatialite'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gaia-gis.it/libspatialite/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +gaia-gis.it/libspatialite -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gaia-gis.it/fossil/freexl', 'libgeos.org', 'git.osgeo.org/gitea/rttopo/librttopo', 'gnome.org/libxml2', 'zlib.net/minizip', 'proj.org', 'sqlite.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.0', '5.0.1']; aliases: readonly [] }; export type GaiagisitlibspatialitePackage = typeof gaiagisitlibspatialitePackage