UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.96 kB
/** * **x264** - H.264/AVC encoder * * @domain `videolan.org/x264` * @programs `x264` * @version `0.164.3095` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install x264` * @name `x264` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.x264 * // Or access via domain * const samePkg = pantry.videolanorgx264 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "x264" * console.log(pkg.description) // "H.264/AVC encoder" * console.log(pkg.programs) // ["x264"] * console.log(pkg.versions[0]) // "0.164.3095" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/videolan-org/x264.md * @see https://ts-pkgx.netlify.app/usage */ export declare const x264Package: { /** * The display name of this package. */ name: 'x264'; /** * The canonical domain name for this package. */ domain: 'videolan.org/x264'; /** * Brief description of what this package does. */ description: 'H.264/AVC encoder'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/videolan.org/x264/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x264'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['x264']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.164.3095']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type X264Package = typeof x264Package