ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.37 kB
TypeScript
/**
* **docutils.org** - Text processing system for reStructuredText
*
* @domain `docutils.org`
* @programs `docutils`, `rst2html`, `rst2html4`, `rst2html5`, `rst2latex`, ... (+6 more)
* @version `0.22.0` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install docutils.org`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.docutilsorg
* console.log(pkg.name) // "docutils.org"
* console.log(pkg.description) // "Text processing system for reStructuredText"
* console.log(pkg.programs) // ["docutils", "rst2html", ...]
* console.log(pkg.versions[0]) // "0.22.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/docutils-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const docutilsorgPackage: {
/**
* The display name of this package.
*/
name: 'docutils.org';
/**
* The canonical domain name for this package.
*/
domain: 'docutils.org';
/**
* Brief description of what this package does.
*/
description: 'Text processing system for reStructuredText';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docutils.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 docutils.org';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['docutils', 'rst2html', 'rst2html4', 'rst2html5', 'rst2latex', 'rst2man', 'rst2odt', 'rst2pseudoxml', 'rst2s5', 'rst2xetex', 'rst2xml'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.22.0', '0.21.2', '0.21.1', '0.21.0', '0.20.1', '0.20.0', '0.19.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +docutils.org -- $SHELL -i';
launchpadInstallCommand: 'launchpad install docutils.org'
};
export type DocutilsorgPackage = typeof docutilsorgPackage