/** * **lolcat** - Rainbows and unicorns in your console! * * @domain `github.com/jaseg/lolcat` * @programs `lolcat` * @version `1.5.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/jaseg/lolcat` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomjaseglolcat * console.log(pkg.name) // "lolcat" * console.log(pkg.description) // "Rainbows and unicorns in your console!" * console.log(pkg.programs) // ["lolcat"] * console.log(pkg.versions[0]) // "1.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jaseg/lolcat.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lolcatPackage: { /** * The display name of this package. */ name: 'lolcat'; /** * The canonical domain name for this package. */ domain: 'github.com/jaseg/lolcat'; /** * Brief description of what this package does. */ description: 'Rainbows and unicorns in your console!'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jaseg/lolcat/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/busyloop/lolcat'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/jaseg/lolcat'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/jaseg/lolcat -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/jaseg/lolcat'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lolcat']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.0', '1.4.0']; aliases: readonly [] }; export type LolcatPackage = typeof lolcatPackage