ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.43 kB
TypeScript
/**
* **yq** - yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor
*
* @domain `github.com/mikefarah/yq`
* @programs `yq`
* @version `4.45.4` (33 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install yq`
* @name `yq`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.yq
* // Or access via domain
* const samePkg = pantry.githubcommikefarahyq
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "yq"
* console.log(pkg.description) // "yq is a portable command-line YAML, JSON, XML, ..."
* console.log(pkg.programs) // ["yq"]
* console.log(pkg.versions[0]) // "4.45.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/mikefarah/yq.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const yqPackage: {
/**
* The display name of this package.
*/
name: 'yq';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/mikefarah/yq';
/**
* Brief description of what this package does.
*/
description: 'yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mikefarah/yq/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install yq';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['yq'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.45.4', '4.45.3', '4.45.2', '4.45.1', '4.44.6', '4.44.5', '4.44.3', '4.44.2', '4.44.1', '4.43.1', '4.42.1', '4.41.1', '4.40.7', '4.40.5', '4.40.4', '4.40.3', '4.40.2', '4.40.1', '4.35.2', '4.35.1', '4.34.2', '4.34.1', '4.33.3', '4.33.2', '4.33.1', '4.32.2', '4.32.1', '4.31.2', '4.31.1', '4.30.8', '4.30.7', '4.30.6', '4.30.5'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type YqPackage = typeof yqPackage