/** * **mozjpeg** - Improved JPEG encoder. * * @domain `mozilla.org/mozjpeg` * @programs `cjpeg`, `djpeg`, `jpegtran`, `rdjpgcom`, `tjbench`, ... (+1 more) * @version `4.0.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mozilla.org/mozjpeg` * @dependencies `libpng.org^1` * @buildDependencies `cmake.org@^3`, `nasm.us@^2`, `libpng.org@^1` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mozillaorgmozjpeg * console.log(pkg.name) // "mozjpeg" * console.log(pkg.description) // "Improved JPEG encoder." * console.log(pkg.programs) // ["cjpeg", "djpeg", ...] * console.log(pkg.versions[0]) // "4.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mozilla-org/mozjpeg.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mozillaorgmozjpegPackage: { /** * The display name of this package. */ name: 'mozjpeg'; /** * The canonical domain name for this package. */ domain: 'mozilla.org/mozjpeg'; /** * Brief description of what this package does. */ description: 'Improved JPEG encoder.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mozilla.org/mozjpeg/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/mozilla/mozjpeg'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mozilla.org/mozjpeg'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mozilla.org/mozjpeg -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mozilla.org/mozjpeg'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cjpeg', 'djpeg', 'jpegtran', 'rdjpgcom', 'tjbench', 'wrjpgcom']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libpng.org^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'nasm.us@^2', 'libpng.org@^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.3']; aliases: readonly [] }; export type MozillaorgmozjpegPackage = typeof mozillaorgmozjpegPackage