UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.35 kB
/** * **SvtAv1EncApp** - AV1 encoder * * @domain `gitlab.com/AOMediaCodec/SVT-AV1` * @programs `SvtAv1EncApp` * @version `3.1.0` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install SvtAv1EncApp` * @name `SvtAv1EncApp` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.SvtAv1EncApp * // Or access via domain * const samePkg = pantry.gitlabcomaomediacodecsvtav1 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "SvtAv1EncApp" * console.log(pkg.description) // "AV1 encoder" * console.log(pkg.programs) // ["SvtAv1EncApp"] * console.log(pkg.versions[0]) // "3.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gitlab-com/AOMediaCodec/SVT-AV1.md * @see https://ts-pkgx.netlify.app/usage */ export declare const svtAv1EncAppPackage: { /** * The display name of this package. */ name: 'SvtAv1EncApp'; /** * The canonical domain name for this package. */ domain: 'gitlab.com/AOMediaCodec/SVT-AV1'; /** * Brief description of what this package does. */ description: 'AV1 encoder'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gitlab.com/AOMediaCodec/SVT-AV1/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install SvtAv1EncApp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['SvtAv1EncApp']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.1.0', '3.0.2', '3.0.1', '3.0.0', '2.3.0', '2.2.1', '2.2.0', '2.1.2', '2.1.1', '2.1.0', '2.0.0', '1.8.0', '1.7.0', '1.6.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) SvtAv1EncApp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install SvtAv1EncApp' }; export type SvtAv1EncAppPackage = typeof svtAv1EncAppPackage