/** * **heif-converter** - heif-converter is a versatile command-line application, along with a Docker image, that offers an easy and efficient way to convert HEIC (and AVIF) images to other common formats like JPEG and PNG, and vice versa. It leverages the go-libheif module, a GoLang wrapper for the libheif library. * * @domain `github.com/MaestroError/heif-converter-image` * @programs `heif-converter` * @version `2023.6.23` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/MaestroError/heif-converter-image` * @dependencies `github.com/strukturag/libheif` * @buildDependencies `go.dev@^1.19` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcommaestroerrorheifconverterimage * console.log(pkg.name) // "heif-converter" * console.log(pkg.description) // "heif-converter is a versatile command-line appl..." * console.log(pkg.programs) // ["heif-converter"] * console.log(pkg.versions[0]) // "2023.6.23" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/MaestroError/heif-converter-image.md * @see https://ts-pkgx.netlify.app/usage */ export declare const heifconverterimagePackage: { /** * The display name of this package. */ name: 'heif-converter'; /** * The canonical domain name for this package. */ domain: 'github.com/MaestroError/heif-converter-image'; /** * Brief description of what this package does. */ description: 'heif-converter is a versatile command-line application, along with a Docker image, that offers an easy and efficient way to convert HEIC (and AVIF) images to other common formats like JPEG and PNG, and vice versa. It leverages the go-libheif module, a GoLang wrapper for the libheif library.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/MaestroError/heif-converter-image/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/MaestroError/heif-converter-image'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/MaestroError/heif-converter-image'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/MaestroError/heif-converter-image -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/MaestroError/heif-converter-image'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['heif-converter']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['github.com/strukturag/libheif']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.19']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.6.23']; aliases: readonly [] }; export type HeifconverterimagePackage = typeof heifconverterimagePackage