UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.24 kB
/** * **watch** - pkgx package * * @domain `gitlab.com/procps-ng/watch` * @programs `watch` * @version `4.0.4` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install watch` * @name `watch` * @dependencies `invisible-island.net/ncurses>=6.0` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.watch * // Or access via domain * const samePkg = pantry.gitlabcomprocpsngwatch * console.log(pkg === samePkg) // true * console.log(pkg.name) // "watch" * console.log(pkg.programs) // ["watch"] * console.log(pkg.versions[0]) // "4.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gitlab-com/procps-ng/watch.md * @see https://ts-pkgx.netlify.app/usage */ export declare const watchPackage: { /** * The display name of this package. */ name: 'watch'; /** * The canonical domain name for this package. */ domain: 'gitlab.com/procps-ng/watch'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gitlab.com/procps-ng/watch/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install watch'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['watch']; 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.4', '4.0.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) watch -- $SHELL -i'; launchpadInstallCommand: 'launchpad install watch' }; export type WatchPackage = typeof watchPackage