UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.42 kB
/** * **itstool** - Translate XML with PO files using W3C Internationalization Tag Set rules * * @domain `itstool.org` * @programs `itstool` * @version `2.0.7` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install itstool` * @name `itstool` * @dependencies `gnome.org/libxml2`, `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.itstool * // Or access via domain * const samePkg = pantry.itstoolorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "itstool" * console.log(pkg.description) // "Translate XML with PO files using W3C Internati..." * console.log(pkg.programs) // ["itstool"] * console.log(pkg.versions[0]) // "2.0.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/itstool-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const itstoolPackage: { /** * The display name of this package. */ name: 'itstool'; /** * The canonical domain name for this package. */ domain: 'itstool.org'; /** * Brief description of what this package does. */ description: 'Translate XML with PO files using W3C Internationalization Tag Set rules'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/itstool.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 itstool'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['itstool']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnome.org/libxml2', 'python.org~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) itstool -- $SHELL -i'; launchpadInstallCommand: 'launchpad install itstool' }; export type ItstoolPackage = typeof itstoolPackage