UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.38 kB
/** * **gops** - A tool to list and diagnose Go processes currently running on your system * * @domain `github.com/google/gops` * @programs `gops` * @version `0.3.28` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gops` * @name `gops` * @dependencies `go.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gops * // Or access via domain * const samePkg = pantry.githubcomgooglegops * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gops" * console.log(pkg.description) // "A tool to list and diagnose Go processes curren..." * console.log(pkg.programs) // ["gops"] * console.log(pkg.versions[0]) // "0.3.28" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/google/gops.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gopsPackage: { /** * The display name of this package. */ name: 'gops'; /** * The canonical domain name for this package. */ domain: 'github.com/google/gops'; /** * Brief description of what this package does. */ description: 'A tool to list and diagnose Go processes currently running on your system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/google/gops/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gops'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gops']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.28', '0.3.27']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) gops -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gops' }; export type GopsPackage = typeof gopsPackage