UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.99 kB
/** * **ctop** - Top-like interface for container metrics * * @domain `ctop.sh` * @programs `ctop` * @version `0.7.7` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install ctop` * @aliases `ctop` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.ctop * // Or access via domain * const samePkg = pantry.ctopsh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ctop.sh" * console.log(pkg.description) // "Top-like interface for container metrics" * console.log(pkg.programs) // ["ctop"] * console.log(pkg.versions[0]) // "0.7.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ctop-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ctopPackage: { /** * The display name of this package. */ name: 'ctop.sh'; /** * The canonical domain name for this package. */ domain: 'ctop.sh'; /** * Brief description of what this package does. */ description: 'Top-like interface for container metrics'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ctop.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 ctop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ctop']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['ctop'] }; export type CtopPackage = typeof ctopPackage