UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.26 kB
/** * **libpng.org** - LIBPNG: Portable Network Graphics support, official libpng repository * * @domain `libpng.org` * @programs `libpng-config`, `libpng16-config`, `png-fix-itxt`, `pngfix` * @version `1.6.49` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install +libpng.org -- $SHELL -i` * @dependencies `zlib.net@1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libpngorg * console.log(pkg.name) // "libpng.org" * console.log(pkg.description) // "LIBPNG: Portable Network Graphics support, offi..." * console.log(pkg.programs) // ["libpng-config", "libpng16-config", ...] * console.log(pkg.versions[0]) // "1.6.49" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libpng-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libpngorgPackage: { /** * The display name of this package. */ name: 'libpng.org'; /** * The canonical domain name for this package. */ domain: 'libpng.org'; /** * Brief description of what this package does. */ description: 'LIBPNG: Portable Network Graphics support, official libpng repository'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libpng.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 +libpng.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['libpng-config', 'libpng16-config', 'png-fix-itxt', 'pngfix']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.49', '1.6.48', '1.6.47', '1.6.46', '1.6.45', '1.6.44', '1.6.43', '1.6.42', '1.6.41', '1.6.40', '1.6.39', '1.6.35']; aliases: readonly [] }; export type LibpngorgPackage = typeof libpngorgPackage