/** * **pier** - A Linux script management CLI written in Rust * * @domain `crates.io/pier` * @programs `pier` * @version `0.1.6` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/pier` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiopier * console.log(pkg.name) // "pier" * console.log(pkg.description) // "A Linux script management CLI written in Rust" * console.log(pkg.programs) // ["pier"] * console.log(pkg.versions[0]) // "0.1.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/pier.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiopierPackage: { /** * The display name of this package. */ name: 'pier'; /** * The canonical domain name for this package. */ domain: 'crates.io/pier'; /** * Brief description of what this package does. */ description: 'A Linux script management CLI written in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/pier/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pier-cli/pier'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/pier'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/pier -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/pier'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pier']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.6', '0.1.5']; aliases: readonly [] }; export type CratesiopierPackage = typeof cratesiopierPackage