/** * **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 sf.net/optipng` * @homepage https://optipng.sourceforge.net/ * @dependencies `libpng.org^1`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sfnetoptipng * 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 sfnetoptipngPackage: { /** * 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: 'https://optipng.sourceforge.net/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sf.net/optipng'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sf.net/optipng -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sf.net/optipng'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['optipng']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libpng.org^1', 'zlib.net^1']; buildDependencies: readonly []; /** * 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']; aliases: readonly [] }; export type SfnetoptipngPackage = typeof sfnetoptipngPackage