ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.35 kB
TypeScript
/**
* **httpie.io** - 🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more.
*
* @domain `httpie.io`
* @programs `http`, `httpie`, `https`
* @version `3.2.4` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install httpie.io`
* @dependencies `python.org>=3<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.httpieio
* console.log(pkg.name) // "httpie.io"
* console.log(pkg.description) // "🥧 HTTPie CLI — modern, user-friendly command-..."
* console.log(pkg.programs) // ["http", "httpie", ...]
* console.log(pkg.versions[0]) // "3.2.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/httpie-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const httpieioPackage: {
/**
* The display name of this package.
*/
name: 'httpie.io';
/**
* The canonical domain name for this package.
*/
domain: 'httpie.io';
/**
* Brief description of what this package does.
*/
description: '🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/httpie.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install httpie.io';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['http', 'httpie', 'https'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3<3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.2.4', '3.2.3', '3.2.2', '3.2.1'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +httpie.io -- $SHELL -i';
launchpadInstallCommand: 'launchpad install httpie.io'
};
export type HttpieioPackage = typeof httpieioPackage