UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

58 lines 1.66 kB
/** * **xfixes** - pkgx package * * @domain `x.org/xfixes` * @version `6.0.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install +x.org/xfixes -- $SHELL -i` * @dependencies `x.org/x11`, `x.org/protocol` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxfixes * console.log(pkg.name) // "xfixes" * console.log(pkg.versions[0]) // "6.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xfixes.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxfixesPackage: { /** * The display name of this package. */ name: 'xfixes'; /** * The canonical domain name for this package. */ domain: 'x.org/xfixes'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xfixes/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +x.org/xfixes -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['x.org/x11', 'x.org/protocol']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.0.1']; aliases: readonly [] }; export type XorgxfixesPackage = typeof xorgxfixesPackage