ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.23 kB
TypeScript
/**
* **texinfo** - Official documentation format of the GNU project
*
* @domain `gnu.org/texinfo`
* @programs `info`, `install-info`, `makeinfo`, `pdftexi2dvi`, `pod2texi`, ... (+4 more)
* @version `7.2.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gnu.org/texinfo -- $SHELL -i`
* @dependencies `perl.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.gnuorgtexinfo
* console.log(pkg.name) // "texinfo"
* console.log(pkg.description) // "Official documentation format of the GNU project"
* console.log(pkg.programs) // ["info", "install-info", ...]
* console.log(pkg.versions[0]) // "7.2.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/texinfo.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gnuorgtexinfoPackage: {
/**
* The display name of this package.
*/
name: 'texinfo';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/texinfo';
/**
* Brief description of what this package does.
*/
description: 'Official documentation format of the GNU project';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/texinfo/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +gnu.org/texinfo -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['info', 'install-info', 'makeinfo', 'pdftexi2dvi', 'pod2texi', 'texi2any', 'texi2dvi', 'texi2pdf', 'texindex'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['perl.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['7.2.0', '7.1.1', '7.1.0', '7.0.3', '7.0.1'];
aliases: readonly []
};
export type GnuorgtexinfoPackage = typeof gnuorgtexinfoPackage