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