UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.33 kB
/** * **dbtoepub** - XML vocabulary to create presentation-neutral documents * * @domain `docbook.org/xsl` * @programs `dbtoepub` * @version `1.79.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install dbtoepub` * @aliases `dbtoepub`, `docbook-xsl` * @dependencies `docbook.org^5`, `gnome.org/libxml2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.dbtoepub * // Or access via domain * const samePkg = pantry.docbookorgxsl * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xsl" * console.log(pkg.description) // "XML vocabulary to create presentation-neutral d..." * console.log(pkg.programs) // ["dbtoepub"] * console.log(pkg.versions[0]) // "1.79.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/docbook-org/xsl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dbtoepubPackage: { /** * The display name of this package. */ name: 'xsl'; /** * The canonical domain name for this package. */ domain: 'docbook.org/xsl'; /** * Brief description of what this package does. */ description: 'XML vocabulary to create presentation-neutral documents'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docbook.org/xsl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dbtoepub'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dbtoepub']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['docbook.org^5', 'gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.79.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['dbtoepub', 'docbook-xsl'] }; export type DbtoepubPackage = typeof dbtoepubPackage