/** * **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.sh` * @homepage https://bcicen.github.io/ctop/ * @buildDependencies `go.dev@~1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.ctopsh * console.log(pkg.name) // "ctop" * 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 ctopshPackage: { /** * The display name of this package. */ name: 'ctop'; /** * 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: 'https://bcicen.github.io/ctop/'; githubUrl: 'https://github.com/bcicen/ctop'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ctop.sh'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +ctop.sh -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ctop.sh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ctop']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.7']; aliases: readonly [] }; export type CtopshPackage = typeof ctopshPackage