UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **elvish** - Powerful scripting language & versatile interactive shell * * @domain `elv.sh` * @programs `elvish` * @version `0.21.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install elvish` * @aliases `elvish` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.elvish * // Or access via domain * const samePkg = pantry.elvsh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "elv.sh" * console.log(pkg.description) // "Powerful scripting language & versatile interac..." * console.log(pkg.programs) // ["elvish"] * console.log(pkg.versions[0]) // "0.21.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/elv-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const elvishPackage: { /** * The display name of this package. */ name: 'elv.sh'; /** * The canonical domain name for this package. */ domain: 'elv.sh'; /** * Brief description of what this package does. */ description: 'Powerful scripting language & versatile interactive shell'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/elv.sh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install elvish'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['elvish']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.21.0', '0.20.1', '0.20.0', '0.19.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['elvish'] }; export type ElvishPackage = typeof elvishPackage