UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.66 kB
/** * **avif** - libavif - Library for encoding and decoding .avif files * * @domain `github.com/AOMediaCodec/libavif` * @programs `avifenc`, `avifdec` * @version `1.3.0` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install avif` * @name `avif` * @dependencies `aomedia.googlesource.com/aom^3`, `libpng.org^1`, `libjpeg-turbo.org^2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.avif * // Or access via domain * const samePkg = pantry.githubcomaomediacodeclibavif * console.log(pkg === samePkg) // true * console.log(pkg.name) // "avif" * console.log(pkg.description) // "libavif - Library for encoding and decoding .av..." * console.log(pkg.programs) // ["avifenc", "avifdec"] * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/AOMediaCodec/libavif.md * @see https://ts-pkgx.netlify.app/usage */ export declare const avifPackage: { /** * The display name of this package. */ name: 'avif'; /** * The canonical domain name for this package. */ domain: 'github.com/AOMediaCodec/libavif'; /** * Brief description of what this package does. */ description: 'libavif - Library for encoding and decoding .avif files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/AOMediaCodec/libavif/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install avif'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['avifenc', 'avifdec']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['aomedia.googlesource.com/aom^3', 'libpng.org^1', 'libjpeg-turbo.org^2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.0', '1.2.1', '1.2.0', '1.1.1', '1.1.0', '1.0.4', '1.0.3', '1.0.2', '1.0.1', '1.0.0', '0.11.1']; /** * 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/AOMediaCodec/libavif -- $SHELL -i'; launchpadInstallCommand: 'launchpad install avif' }; export type AvifPackage = typeof avifPackage