UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.16 kB
/** * **optipng** - PNG file optimizer * * @domain `sf.net/optipng` * @programs `optipng` * @version `7.9.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install optipng` * @name `optipng` * @dependencies `libpng.org^1`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.optipng * // Or access via domain * const samePkg = pantry.sfnetoptipng * console.log(pkg === samePkg) // true * console.log(pkg.name) // "optipng" * console.log(pkg.description) // "PNG file optimizer" * console.log(pkg.programs) // ["optipng"] * console.log(pkg.versions[0]) // "7.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sf-net/optipng.md * @see https://ts-pkgx.netlify.app/usage */ export declare const optipngPackage: { /** * The display name of this package. */ name: 'optipng'; /** * The canonical domain name for this package. */ domain: 'sf.net/optipng'; /** * Brief description of what this package does. */ description: 'PNG file optimizer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sf.net/optipng/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install optipng'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['optipng']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libpng.org^1', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.9.1', '0.7.8', '0.7.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type OptipngPackage = typeof optipngPackage