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