UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.04 kB
/** * **mprocs** - Run multiple commands in parallel * * @domain `crates.io/mprocs` * @programs `mprocs` * @version `0.7.3` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install mprocs` * @name `mprocs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mprocs * // Or access via domain * const samePkg = pantry.cratesiomprocs * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mprocs" * console.log(pkg.description) // "Run multiple commands in parallel" * console.log(pkg.programs) // ["mprocs"] * console.log(pkg.versions[0]) // "0.7.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/mprocs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mprocsPackage: { /** * The display name of this package. */ name: 'mprocs'; /** * The canonical domain name for this package. */ domain: 'crates.io/mprocs'; /** * Brief description of what this package does. */ description: 'Run multiple commands in parallel'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/mprocs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mprocs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mprocs']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.3', '0.7.2', '0.7.1', '0.7.0', '0.6.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type MprocsPackage = typeof mprocsPackage