/** * **xtrans** - pkgx package * * @domain `x.org/xtrans` * @version `1.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/xtrans` * @dependencies `x.org/protocol` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxtrans * console.log(pkg.name) // "xtrans" * console.log(pkg.versions[0]) // "1.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xtrans.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxtransPackage: { /** * The display name of this package. */ name: 'xtrans'; /** * The canonical domain name for this package. */ domain: 'x.org/xtrans'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xtrans/package.yml'; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/xtrans'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/xtrans -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/xtrans'; programs: readonly []; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['x.org/protocol']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.0']; aliases: readonly [] }; export type XorgxtransPackage = typeof xorgxtransPackage