ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.13 kB
TypeScript
/**
* **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 hac`
* @aliases `hac`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.hac
* // Or access via domain
* const samePkg = pantry.cratesiohacclient
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "hac-client"
* 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 hacPackage: {
/**
* The display name of this package.
*/
name: 'hac-client';
/**
* 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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install hac';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['hac'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.2.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['hac']
};
export type HacPackage = typeof hacPackage