/** * **pik** - Process Interactive Kill * * @domain `crates.io/pik` * @programs `pik` * @version `0.27.0` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/pik` * @homepage https://crates.io/crates/pik * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiopik * console.log(pkg.name) // "pik" * console.log(pkg.description) // "Process Interactive Kill" * console.log(pkg.programs) // ["pik"] * console.log(pkg.versions[0]) // "0.27.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/pik.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiopikPackage: { /** * The display name of this package. */ name: 'pik'; /** * The canonical domain name for this package. */ domain: 'crates.io/pik'; /** * Brief description of what this package does. */ description: 'Process Interactive Kill'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/pik/package.yml'; homepageUrl: 'https://crates.io/crates/pik'; githubUrl: 'https://github.com/jacek-kurlit/pik'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/pik'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/pik -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/pik'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pik']; 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.27.0', '0.26.1', '0.26.0', '0.25.0', '0.24.0', '0.23.1', '0.23.0', '0.22.0', '0.21.0', '0.20.0', '0.19.0', '0.18.1', '0.18.0', '0.17.0', '0.16.0']; aliases: readonly [] }; export type CratesiopikPackage = typeof cratesiopikPackage