ts-pkgx
Version:
A library & CLI for managing packages
56 lines • 1.73 kB
TypeScript
/**
* **pyyaml.org** - Canonical source repository for LibYAML
*
* @domain `pyyaml.org`
* @version `0.2.5` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pyyaml.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.pyyamlorg
* console.log(pkg.name) // "pyyaml.org"
* console.log(pkg.description) // "Canonical source repository for LibYAML"
* console.log(pkg.versions[0]) // "0.2.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pyyaml-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const pyyamlorgPackage: {
/**
* The display name of this package.
*/
name: 'pyyaml.org';
/**
* The canonical domain name for this package.
*/
domain: 'pyyaml.org';
/**
* Brief description of what this package does.
*/
description: 'Canonical source repository for LibYAML';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pyyaml.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pyyaml.org';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.2.5'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pyyaml.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install pyyaml.org'
};
export type PyyamlorgPackage = typeof pyyamlorgPackage