UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

66 lines 2.37 kB
/** * **gitlab.com/procps-ng/procps** - pkgx package * * @domain `gitlab.com/procps-ng/procps` * @programs `free`, `pgrep`, `pidof`, `pkill`, `pmap`, ... (+8 more) * @version `4.0.5` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install gitlab.com/procps-ng/procps` * @dependencies `invisible-island.net/ncurses>=6.0` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gitlabcomprocpsngprocps * console.log(pkg.name) // "gitlab.com/procps-ng/procps" * console.log(pkg.programs) // ["free", "pgrep", ...] * console.log(pkg.versions[0]) // "4.0.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gitlab-com/procps-ng/procps.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitlabcomprocpsngprocpsPackage: { /** * The display name of this package. */ name: 'gitlab.com/procps-ng/procps'; /** * The canonical domain name for this package. */ domain: 'gitlab.com/procps-ng/procps'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gitlab.com/procps-ng/procps/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gitlab.com/procps-ng/procps'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['free', 'pgrep', 'pidof', 'pkill', 'pmap', 'ps', 'pwdx', 'slabtop', 'sysctl', 'tload', 'top', 'vmstat', 'w']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['invisible-island.net/ncurses>=6.0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.0.5', '4.0.4']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gitlab.com/procps-ng/procps -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gitlab.com/procps-ng/procps' }; export type GitlabcomprocpsngprocpsPackage = typeof gitlabcomprocpsngprocpsPackage