/** * **microcks-cli** - Simple CLI for interacting with Microcks test APIs * * @domain `microcks.io` * @programs `microcks-cli` * @version `1.0.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install microcks.io` * @homepage https://microcks.io * @dependencies `curl.se/ca-certs` * @buildDependencies `go.dev@=1.23.0` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.microcksio * console.log(pkg.name) // "microcks-cli" * console.log(pkg.description) // "Simple CLI for interacting with Microcks test APIs" * console.log(pkg.programs) // ["microcks-cli"] * console.log(pkg.versions[0]) // "1.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/microcks-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const microcksioPackage: { /** * The display name of this package. */ name: 'microcks-cli'; /** * The canonical domain name for this package. */ domain: 'microcks.io'; /** * Brief description of what this package does. */ description: 'Simple CLI for interacting with Microcks test APIs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/microcks.io/package.yml'; homepageUrl: 'https://microcks.io'; githubUrl: 'https://github.com/microcks/microcks-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install microcks.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +microcks.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install microcks.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['microcks-cli']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@=1.23.0']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.2', '1.0.1', '1.0.0', '0.9.0', '0.5.8', '0.5.7', '0.5.6', '0.5.5', '0.5.4']; aliases: readonly [] }; export type MicrocksioPackage = typeof microcksioPackage