UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.27 kB
/** * **xinput** - Utility to configure and test X input devices * * @domain `x.org/xinput` * @programs `xinput` * @version `1.6.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install xinput` * @name `xinput` * @dependencies `x.org/x11`, `x.org/exts`, `x.org/xi`, ... (+2 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xinput * // Or access via domain * const samePkg = pantry.xorgxinput * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xinput" * console.log(pkg.description) // "Utility to configure and test X input devices" * console.log(pkg.programs) // ["xinput"] * console.log(pkg.versions[0]) // "1.6.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xinput.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xinputPackage: { /** * The display name of this package. */ name: 'xinput'; /** * The canonical domain name for this package. */ domain: 'x.org/xinput'; /** * Brief description of what this package does. */ description: 'Utility to configure and test X input devices'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xinput/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xinput'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xinput']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['x.org/x11', 'x.org/exts', 'x.org/xi', 'x.org/xinerama', 'x.org/xrandr']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type XinputPackage = typeof xinputPackage