UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.12 kB
/** * **agg** - Asciicast to GIF converter * * @domain `asciinema.org/agg` * @programs `agg` * @version `1.5.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install agg` * @name `agg` * @dependencies `rust-lang.org^1.56` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.agg * // Or access via domain * const samePkg = pantry.asciinemaorgagg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "agg" * console.log(pkg.description) // "Asciicast to GIF converter" * console.log(pkg.programs) // ["agg"] * console.log(pkg.versions[0]) // "1.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/asciinema-org/agg.md * @see https://ts-pkgx.netlify.app/usage */ export declare const aggPackage: { /** * The display name of this package. */ name: 'agg'; /** * The canonical domain name for this package. */ domain: 'asciinema.org/agg'; /** * Brief description of what this package does. */ description: 'Asciicast to GIF converter'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/asciinema.org/agg/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install agg'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['agg']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['rust-lang.org^1.56']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.0', '1.4.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type AggPackage = typeof aggPackage