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