ts-pkgx
Version:
A library & CLI for managing packages
58 lines • 1.64 kB
TypeScript
/**
* **xkbfile** - pkgx package
*
* @domain `x.org/xkbfile`
* @version `1.1.3` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +x.org/xkbfile -- $SHELL -i`
* @dependencies `x.org/x11`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.xorgxkbfile
* console.log(pkg.name) // "xkbfile"
* console.log(pkg.versions[0]) // "1.1.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/x-org/xkbfile.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const xorgxkbfilePackage: {
/**
* The display name of this package.
*/
name: 'xkbfile';
/**
* The canonical domain name for this package.
*/
domain: 'x.org/xkbfile';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xkbfile/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/xkbfile -- $SHELL -i';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['x.org/x11'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.3', '1.1.2'];
aliases: readonly []
};
export type XorgxkbfilePackage = typeof xorgxkbfilePackage