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