ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.46 kB
TypeScript
/**
* **microcks-cli** - Simple CLI for interacting with Microcks test APIs
*
* @domain `microcks.io`
* @programs `microcks-cli`
* @version `0.9.0` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install microcks-cli`
* @name `microcks-cli`
* @dependencies `curl.se/ca-certs`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.microckscli
* // Or access via domain
* const samePkg = pantry.microcksio
* console.log(pkg === samePkg) // true
* 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]) // "0.9.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/microcks-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const microckscliPackage: {
/**
* 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: '';
githubUrl: 'https://github.com/microcks/microcks-cli';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install microcks-cli';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['microcks-cli'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['curl.se/ca-certs'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.9.0', '0.5.8', '0.5.7', '0.5.6', '0.5.5', '0.5.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) microcks-cli -- $SHELL -i';
launchpadInstallCommand: 'launchpad install microcks-cli'
};
export type MicrockscliPackage = typeof microckscliPackage