UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.48 kB
/** * **wait4x** - Wait4X allows you to wait for a port or a service to enter the requested state. * * @domain `wait4x.dev` * @programs `wait4x` * @version `3.5.1` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install wait4x` * @name `wait4x` * @companions `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.wait4x * // Or access via domain * const samePkg = pantry.wait4xdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "wait4x" * console.log(pkg.description) // "Wait4X allows you to wait for a port or a servi..." * console.log(pkg.programs) // ["wait4x"] * console.log(pkg.versions[0]) // "3.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/wait4x-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const wait4xPackage: { /** * The display name of this package. */ name: 'wait4x'; /** * The canonical domain name for this package. */ domain: 'wait4x.dev'; /** * Brief description of what this package does. */ description: 'Wait4X allows you to wait for a port or a service to enter the requested state.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wait4x.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install wait4x'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['wait4x']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['curl.se/ca-certs']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.1', '3.5.0', '3.4.0', '3.3.1', '3.3.0', '3.2.0', '3.1.0', '3.0.0', '2.14.3', '2.14.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) wait4x -- $SHELL -i'; launchpadInstallCommand: 'launchpad install wait4x' }; export type Wait4xPackage = typeof wait4xPackage