UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **mactop** - Apple Silicon Monitor Top written in Golang * * @domain `github.com/context-labs/mactop` * @programs `mactop` * @version `0.2.3` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install mactop` * @name `mactop` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mactop * // Or access via domain * const samePkg = pantry.githubcomcontextlabsmactop * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mactop" * console.log(pkg.description) // "Apple Silicon Monitor Top written in Golang" * console.log(pkg.programs) // ["mactop"] * console.log(pkg.versions[0]) // "0.2.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/context-labs/mactop.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mactopPackage: { /** * The display name of this package. */ name: 'mactop'; /** * The canonical domain name for this package. */ domain: 'github.com/context-labs/mactop'; /** * Brief description of what this package does. */ description: 'Apple Silicon Monitor Top written in Golang'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/context-labs/mactop/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mactop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mactop']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.3', '0.2.2', '0.2.1', '0.2.0', '0.1.9', '0.1.8', '0.1.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) mactop -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mactop' }; export type MactopPackage = typeof mactopPackage