/** * **hac** - A terminal API Client that comes in handy. // Lightweight alternative to postman * * @domain `crates.io/hac-client` * @programs `hac` * @version `0.2.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/hac-client` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiohacclient * console.log(pkg.name) // "hac" * console.log(pkg.description) // "A terminal API Client that comes in handy. // L..." * console.log(pkg.programs) // ["hac"] * console.log(pkg.versions[0]) // "0.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/hac-client.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiohacclientPackage: { /** * The display name of this package. */ name: 'hac'; /** * The canonical domain name for this package. */ domain: 'crates.io/hac-client'; /** * Brief description of what this package does. */ description: 'A terminal API Client that comes in handy. // Lightweight alternative to postman'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/hac-client/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/wllfaria/hac'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/hac-client'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/hac-client -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/hac-client'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hac']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.1']; aliases: readonly [] }; export type CratesiohacclientPackage = typeof cratesiohacclientPackage