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