/** * **asciinema** - Record and share terminal sessions * * @domain `asciinema.org` * @programs `asciinema` * @version `3.0.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install asciinema.org` * @homepage https://asciinema.org * @dependencies `python.org^3.12 # v2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.asciinemaorg * console.log(pkg.name) // "asciinema" * console.log(pkg.description) // "Record and share terminal sessions" * console.log(pkg.programs) // ["asciinema"] * console.log(pkg.versions[0]) // "3.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/asciinema-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const asciinemaorgPackage: { /** * The display name of this package. */ name: 'asciinema'; /** * 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: 'https://asciinema.org'; githubUrl: 'https://github.com/asciinema/asciinema'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install asciinema.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +asciinema.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install asciinema.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['asciinema']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org^3.12 # v2']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.0.1', '3.0.0', '2.4.0']; aliases: readonly [] }; export type AsciinemaorgPackage = typeof asciinemaorgPackage