UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.61 kB
/** * **asciidoctor** - :gem: A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML 5, DocBook 5, and other formats. * * @domain `asciidoctor.org` * @programs `asciidoctor` * @version `2.0.23` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install asciidoctor` * @aliases `asciidoctor` * @dependencies `ruby-lang.org^3.1`, `rubygems.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.asciidoctor * // Or access via domain * const samePkg = pantry.asciidoctororg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "asciidoctor.org" * console.log(pkg.description) // ":gem: A fast, open source text processor and pu..." * console.log(pkg.programs) // ["asciidoctor"] * console.log(pkg.versions[0]) // "2.0.23" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/asciidoctor-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const asciidoctorPackage: { /** * The display name of this package. */ name: 'asciidoctor.org'; /** * The canonical domain name for this package. */ domain: 'asciidoctor.org'; /** * Brief description of what this package does. */ description: ':gem: A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML 5, DocBook 5, and other formats.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/asciidoctor.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 asciidoctor'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['asciidoctor']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['ruby-lang.org^3.1', 'rubygems.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.23', '2.0.22', '2.0.21', '2.0.20', '2.0.19', '2.0.18']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['asciidoctor'] }; export type AsciidoctorPackage = typeof asciidoctorPackage