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