UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.15 kB
/** * **cicada** - An old-school bash-like Unix shell written in Rust * * @domain `hugo.wang/cicada` * @programs `cicada` * @version `1.1.2` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install cicada` * @name `cicada` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.cicada * // Or access via domain * const samePkg = pantry.hugowangcicada * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cicada" * console.log(pkg.description) // "An old-school bash-like Unix shell written in Rust" * console.log(pkg.programs) // ["cicada"] * console.log(pkg.versions[0]) // "1.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hugo-wang/cicada.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cicadaPackage: { /** * The display name of this package. */ name: 'cicada'; /** * The canonical domain name for this package. */ domain: 'hugo.wang/cicada'; /** * Brief description of what this package does. */ description: 'An old-school bash-like Unix shell written in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hugo.wang/cicada/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cicada'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cicada']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.2', '1.1.1', '1.0.3', '1.0.2', '1.0.1', '1.0.0', '0.9.41', '0.9.40', '0.9.39', '0.9.38']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type CicadaPackage = typeof cicadaPackage