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