UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.51 kB
/** * **btop** - Resource monitor. C++ version and continuation of bashtop and bpytop * * @domain `github.com/aristocratos/btop` * @programs `btop` * @version `1.4.3` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install btop` * @name `btop` * @dependencies `linux:gnu.org/gcc/libstdcxx@14` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.btop * // Or access via domain * const samePkg = pantry.githubcomaristocratosbtop * console.log(pkg === samePkg) // true * console.log(pkg.name) // "btop" * console.log(pkg.description) // "Resource monitor. C++ version and continuation ..." * console.log(pkg.programs) // ["btop"] * console.log(pkg.versions[0]) // "1.4.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/aristocratos/btop.md * @see https://ts-pkgx.netlify.app/usage */ export declare const btopPackage: { /** * The display name of this package. */ name: 'btop'; /** * The canonical domain name for this package. */ domain: 'github.com/aristocratos/btop'; /** * Brief description of what this package does. */ description: 'Resource monitor. C++ version and continuation of bashtop and bpytop'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/aristocratos/btop/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install btop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['btop']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:gnu.org/gcc/libstdcxx@14']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.2', '1.3.1', '1.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type BtopPackage = typeof btopPackage