ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.57 kB
TypeScript
/**
* **xml** - Convert XML to another format (based on XSL or other tools)
*
* @domain `pagure.io/xmlto`
* @programs `xmlif`, `xmlto`
* @version `0.0.29` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +pagure.io/xmlto -- $SHELL -i`
* @aliases `xml`
* @dependencies `docbook.org`, `github.com/util-linux/util-linux`, `darwin:gnome.org/libxslt` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.xml
* // Or access via domain
* const samePkg = pantry.pagureioxmlto
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "xmlto"
* console.log(pkg.description) // "Convert XML to another format (based on XSL or ..."
* console.log(pkg.programs) // ["xmlif", "xmlto"]
* console.log(pkg.versions[0]) // "0.0.29" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pagure-io/xmlto.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const xmlPackage: {
/**
* The display name of this package.
*/
name: 'xmlto';
/**
* The canonical domain name for this package.
*/
domain: 'pagure.io/xmlto';
/**
* Brief description of what this package does.
*/
description: 'Convert XML to another format (based on XSL or other tools)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pagure.io/xmlto/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +pagure.io/xmlto -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['xmlif', 'xmlto'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['docbook.org', 'github.com/util-linux/util-linux', 'darwin:gnome.org/libxslt'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.0.29', '0.0.28'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['xml']
};
export type XmlPackage = typeof xmlPackage