/** * **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 crates.io/mprocs` * @buildDependencies `linux:gnu.org/gcc`, `linux:gnu.org/binutils`, `linux:gnu.org/make` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiomprocs * 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 cratesiomprocsPackage: { /** * 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/pvolok/mprocs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/mprocs'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/mprocs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/mprocs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mprocs']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gcc', 'linux:gnu.org/binutils', 'linux:gnu.org/make']; /** * 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']; aliases: readonly [] }; export type CratesiomprocsPackage = typeof cratesiomprocsPackage