/** * **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.org` * @homepage https://itstool.org/ * @dependencies `gnome.org/libxml2`, `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.itstoolorg * 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 itstoolorgPackage: { /** * 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: 'https://itstool.org/'; githubUrl: 'https://github.com/itstool/itstool'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install itstool.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +itstool.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install itstool.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['itstool']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['gnome.org/libxml2', 'python.org~3.11']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.7']; aliases: readonly [] }; export type ItstoolorgPackage = typeof itstoolorgPackage