UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **btm** - Yet another cross-platform graphical process/system monitor. * * @domain `crates.io/bottom` * @programs `btm` * @version `0.11.1` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install btm` * @name `btm` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.btm * // Or access via domain * const samePkg = pantry.cratesiobottom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "btm" * console.log(pkg.description) // "Yet another cross-platform graphical process/sy..." * console.log(pkg.programs) // ["btm"] * console.log(pkg.versions[0]) // "0.11.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/bottom.md * @see https://ts-pkgx.netlify.app/usage */ export declare const btmPackage: { /** * The display name of this package. */ name: 'btm'; /** * The canonical domain name for this package. */ domain: 'crates.io/bottom'; /** * Brief description of what this package does. */ description: 'Yet another cross-platform graphical process/system monitor.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/bottom/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install btm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['btm']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.1', '0.11.0', '0.10.2', '0.10.1', '0.10.0', '0.9.7', '0.9.6', '0.9.5', '0.9.4', '0.9.3', '0.9.2', '0.9.1', '0.9.0', '0.8.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) btm -- $SHELL -i'; launchpadInstallCommand: 'launchpad install btm' }; export type BtmPackage = typeof btmPackage