ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.1 kB
TypeScript
/**
* **mandoc.bsd.lv** - UNIX manpage compiler toolset
*
* @domain `mandoc.bsd.lv`
* @programs `bsdapropos`, `bsdman`, `bsdsoelim`, `bsdwhatis`, `demandoc`, ... (+1 more)
* @version `1.14.6` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +mandoc.bsd.lv -- $SHELL -i`
* @dependencies `zlib.net`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.mandocbsdlv
* console.log(pkg.name) // "mandoc.bsd.lv"
* console.log(pkg.description) // "UNIX manpage compiler toolset"
* console.log(pkg.programs) // ["bsdapropos", "bsdman", ...]
* console.log(pkg.versions[0]) // "1.14.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mandoc-bsd-lv.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const mandocbsdlvPackage: {
/**
* The display name of this package.
*/
name: 'mandoc.bsd.lv';
/**
* The canonical domain name for this package.
*/
domain: 'mandoc.bsd.lv';
/**
* Brief description of what this package does.
*/
description: 'UNIX manpage compiler toolset';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mandoc.bsd.lv/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +mandoc.bsd.lv -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['bsdapropos', 'bsdman', 'bsdsoelim', 'bsdwhatis', 'demandoc', 'mandoc'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['zlib.net'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.14.6'];
aliases: readonly []
};
export type MandocbsdlvPackage = typeof mandocbsdlvPackage