UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.38 kB
/** * **starship** - ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell! * * @domain `starship.rs` * @programs `starship` * @version `1.23.0` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install starship` * @aliases `starship` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.starship * // Or access via domain * const samePkg = pantry.starshiprs * console.log(pkg === samePkg) // true * console.log(pkg.name) // "starship.rs" * console.log(pkg.description) // "☄🌌️ The minimal, blazing-fast, and infinitely..." * console.log(pkg.programs) // ["starship"] * console.log(pkg.versions[0]) // "1.23.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/starship-rs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const starshipPackage: { /** * The display name of this package. */ name: 'starship.rs'; /** * The canonical domain name for this package. */ domain: 'starship.rs'; /** * Brief description of what this package does. */ description: '☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/starship.rs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install starship'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['starship']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.23.0', '1.22.1', '1.22.0', '1.21.1', '1.21.0', '1.20.1', '1.20.0', '1.19.0', '1.18.2', '1.18.1', '1.18.0', '1.17.1', '1.17.0', '1.16.0', '1.15.0', '1.14.2', '1.14.1', '1.14.0', '1.13.1', '1.13.0', '1.12.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['starship'] }; export type StarshipPackage = typeof starshipPackage