/** * **cicada** - An old-school bash-like Unix shell written in Rust * * @domain `hugo.wang/cicada` * @programs `cicada` * @version `1.1.3` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install hugo.wang/cicada` * @homepage https://hugo.wang/cicada/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.hugowangcicada * 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.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hugo-wang/cicada.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hugowangcicadaPackage: { /** * 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: 'https://hugo.wang/cicada/'; githubUrl: 'https://github.com/mitnk/cicada'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hugo.wang/cicada'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +hugo.wang/cicada -- $SHELL -i'; launchpadInstallCommand: 'launchpad install hugo.wang/cicada'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cicada']; 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.1.3', '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']; aliases: readonly [] }; export type HugowangcicadaPackage = typeof hugowangcicadaPackage