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