UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

62 lines 2.02 kB
/** * **libspng.org** - Simple, modern libpng alternative * * @domain `libspng.org` * @version `0.5.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install libspng.org` * @dependencies `darwin:zlib.net` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libspngorg * console.log(pkg.name) // "libspng.org" * console.log(pkg.description) // "Simple, modern libpng alternative" * console.log(pkg.versions[0]) // "0.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libspng-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libspngorgPackage: { /** * The display name of this package. */ name: 'libspng.org'; /** * The canonical domain name for this package. */ domain: 'libspng.org'; /** * Brief description of what this package does. */ description: 'Simple, modern libpng alternative'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libspng.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 libspng.org'; 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 ['0.5.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libspng.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libspng.org' }; export type LibspngorgPackage = typeof libspngorgPackage