UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

63 lines 2.1 kB
/** * **libimagequant** - Palette quantization library that powers pngquant and other PNG optimizers * * @domain `pngquant.org/lib` * @version `4.3.4` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +pngquant.org/lib -- $SHELL -i` * @aliases `libimagequant` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.libimagequant * // Or access via domain * const samePkg = pantry.pngquantorglib * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lib" * console.log(pkg.description) // "Palette quantization library that powers pngqua..." * console.log(pkg.versions[0]) // "4.3.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pngquant-org/lib.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libimagequantPackage: { /** * The display name of this package. */ name: 'lib'; /** * The canonical domain name for this package. */ domain: 'pngquant.org/lib'; /** * Brief description of what this package does. */ description: 'Palette quantization library that powers pngquant and other PNG optimizers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pngquant.org/lib/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +pngquant.org/lib -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.3.4', '4.3.3', '4.3.2', '4.3.1', '4.3.0', '4.2.2', '4.2.1', '4.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['libimagequant'] }; export type LibimagequantPackage = typeof libimagequantPackage