UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.02 kB
/** * **xh** - Friendly and fast tool for sending HTTP requests * * @domain `crates.io/xh` * @programs `xh` * @version `0.24.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install xh` * @name `xh` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xh * // Or access via domain * const samePkg = pantry.cratesioxh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xh" * console.log(pkg.description) // "Friendly and fast tool for sending HTTP requests" * console.log(pkg.programs) // ["xh"] * console.log(pkg.versions[0]) // "0.24.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/xh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xhPackage: { /** * The display name of this package. */ name: 'xh'; /** * The canonical domain name for this package. */ domain: 'crates.io/xh'; /** * Brief description of what this package does. */ description: 'Friendly and fast tool for sending HTTP requests'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/xh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xh']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.24.1', '0.24.0', '0.23.1', '0.23.0', '0.22.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type XhPackage = typeof xhPackage