/** * **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 elv.sh` * @homepage https://elv.sh/ * @buildDependencies `go.dev@^1.19` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.elvsh * console.log(pkg.name) // "elvish" * 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 elvshPackage: { /** * The display name of this package. */ name: 'elvish'; /** * 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: 'https://elv.sh/'; githubUrl: 'https://github.com/elves/elvish'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install elv.sh'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +elv.sh -- $SHELL -i'; launchpadInstallCommand: 'launchpad install elv.sh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['elvish']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.19']; /** * 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']; aliases: readonly [] }; export type ElvshPackage = typeof elvshPackage