UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.48 kB
/** * **pygmentize** - Pygments is a generic syntax highlighter written in Python * * @domain `pygments.org` * @programs `pygmentize` * @version `2.19.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install pygmentize` * @name `pygmentize` * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pygmentize * // Or access via domain * const samePkg = pantry.pygmentsorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pygmentize" * console.log(pkg.description) // "Pygments is a generic syntax highlighter writte..." * console.log(pkg.programs) // ["pygmentize"] * console.log(pkg.versions[0]) // "2.19.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pygments-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pygmentizePackage: { /** * The display name of this package. */ name: 'pygmentize'; /** * The canonical domain name for this package. */ domain: 'pygments.org'; /** * Brief description of what this package does. */ description: 'Pygments is a generic syntax highlighter written in Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pygments.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 pygmentize'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pygmentize']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.19.2', '2.19.1', '2.19.0', '2.18.0', '2.17.2', '2.17.1', '2.17.0', '2.15.0', '2.14.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) pygmentize -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pygmentize' }; export type PygmentizePackage = typeof pygmentizePackage