UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.22 kB
/** * **asciinema** - Record and share terminal sessions * * @domain `asciinema.org` * @programs `asciinema` * @version `2.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install asciinema` * @aliases `asciinema` * @dependencies `python.org^3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.asciinema * // Or access via domain * const samePkg = pantry.asciinemaorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "asciinema.org" * console.log(pkg.description) // "Record and share terminal sessions" * console.log(pkg.programs) // ["asciinema"] * console.log(pkg.versions[0]) // "2.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/asciinema-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const asciinemaPackage: { /** * The display name of this package. */ name: 'asciinema.org'; /** * The canonical domain name for this package. */ domain: 'asciinema.org'; /** * Brief description of what this package does. */ description: 'Record and share terminal sessions'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/asciinema.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install asciinema'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['asciinema']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org^3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['asciinema'] }; export type AsciinemaPackage = typeof asciinemaPackage