UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.44 kB
/** * **xkbcli** - keymap handling library for toolkits and window systems * * @domain `xkbcommon.org` * @programs `xkbcli` * @version `1.10.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install xkbcli` * @aliases `xkbcli` * @dependencies `x.org/x11`, `x.org/xcb`, `freedesktop.org/XKeyboardConfig`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.xkbcli * // Or access via domain * const samePkg = pantry.xkbcommonorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xkbcommon.org" * console.log(pkg.description) // "keymap handling library for toolkits and window..." * console.log(pkg.programs) // ["xkbcli"] * console.log(pkg.versions[0]) // "1.10.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/xkbcommon-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xkbcliPackage: { /** * The display name of this package. */ name: 'xkbcommon.org'; /** * The canonical domain name for this package. */ domain: 'xkbcommon.org'; /** * Brief description of what this package does. */ description: 'keymap handling library for toolkits and window systems'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xkbcommon.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xkbcli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xkbcli']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['x.org/x11', 'x.org/xcb', 'freedesktop.org/XKeyboardConfig', 'gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.10.0', '1.9.2', '1.9.1', '1.9.0', '1.8.1', '1.8.0', '1.7.0', '1.6.0', '1.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['xkbcli'] }; export type XkbcliPackage = typeof xkbcliPackage