UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.41 kB
/** * **xslt** - Read-only mirror of https://gitlab.gnome.org/GNOME/libxslt * * @domain `gnome.org/libxslt` * @programs `xslt-config`, `xsltproc` * @version `1.1.43` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install +gnome.org/libxslt -- $SHELL -i` * @aliases `xslt` * @dependencies `gnome.org/libxml2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.xslt * // Or access via domain * const samePkg = pantry.gnomeorglibxslt * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libxslt" * console.log(pkg.description) // "Read-only mirror of https://gitlab.gnome.org/GN..." * console.log(pkg.programs) // ["xslt-config", "xsltproc"] * console.log(pkg.versions[0]) // "1.1.43" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gnome-org/libxslt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xsltPackage: { /** * The display name of this package. */ name: 'libxslt'; /** * The canonical domain name for this package. */ domain: 'gnome.org/libxslt'; /** * Brief description of what this package does. */ description: 'Read-only mirror of https://gitlab.gnome.org/GNOME/libxslt'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/libxslt/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +gnome.org/libxslt -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xslt-config', 'xsltproc']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.43', '1.1.42', '1.1.41', '1.1.40', '1.1.39', '1.1.38', '1.1.37']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['xslt'] }; export type XsltPackage = typeof xsltPackage