UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

77 lines 3.15 kB
/** * **heif** - libheif is an HEIF and AVIF file format decoder and encoder. * * @domain `github.com/strukturag/libheif` * @programs `heif-enc`, `heif-info`, `heif-thumbnailer` * @version `1.20.2` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install heif` * @name `heif` * @dependencies `aomedia.googlesource.com/aom`, `libjpeg-turbo.org`, `github.com/strukturag/libde265`, ... (+4 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.heif * // Or access via domain * const samePkg = pantry.githubcomstrukturaglibheif * console.log(pkg === samePkg) // true * console.log(pkg.name) // "heif" * console.log(pkg.description) // "libheif is an HEIF and AVIF file format decoder..." * console.log(pkg.programs) // ["heif-enc", "heif-info", ...] * console.log(pkg.versions[0]) // "1.20.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/strukturag/libheif.md * @see https://ts-pkgx.netlify.app/usage */ export declare const heifPackage: { /** * The display name of this package. */ name: 'heif'; /** * The canonical domain name for this package. */ domain: 'github.com/strukturag/libheif'; /** * Brief description of what this package does. */ description: 'libheif is an HEIF and AVIF file format decoder and encoder.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/strukturag/libheif/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install heif'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['heif-enc', 'heif-info', 'heif-thumbnailer']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['aomedia.googlesource.com/aom', 'libjpeg-turbo.org', 'github.com/strukturag/libde265', 'libpng.org', 'freedesktop.org/shared-mime-info', 'videolan.org/x265@3.2', 'linux:gnu.org/gcc/libstdcxx@14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.20.2', '1.20.1', '1.20.0', '1.19.8', '1.19.7', '1.19.6', '1.19.5', '1.19.4', '1.19.3', '1.19.2', '1.19.1', '1.19.0', '1.18.2', '1.18.1', '1.18.0', '1.17.6', '1.17.5', '1.17.4', '1.17.3', '1.17.2', '1.17.1', '1.17.0', '1.16.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/strukturag/libheif -- $SHELL -i'; launchpadInstallCommand: 'launchpad install heif' }; export type HeifPackage = typeof heifPackage