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