UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.09 kB
/** * **pstree** - pstree shows the process listing as a tree * * @domain `github.com/FredHucht/pstree` * @programs `pstree` * @version `2.40.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install pstree` * @name `pstree` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pstree * // Or access via domain * const samePkg = pantry.githubcomfredhuchtpstree * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pstree" * console.log(pkg.description) // "pstree shows the process listing as a tree" * console.log(pkg.programs) // ["pstree"] * console.log(pkg.versions[0]) // "2.40.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/FredHucht/pstree.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pstreePackage: { /** * The display name of this package. */ name: 'pstree'; /** * The canonical domain name for this package. */ domain: 'github.com/FredHucht/pstree'; /** * Brief description of what this package does. */ description: 'pstree shows the process listing as a tree'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/FredHucht/pstree/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pstree'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pstree']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.40.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PstreePackage = typeof pstreePackage