ts-pkgx
Version:
A library & CLI for managing packages
56 lines • 1.8 kB
TypeScript
/**
* **libusb.info** - A cross-platform library to access USB devices
*
* @domain `libusb.info`
* @version `1.0.29` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install libusb.info`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.libusbinfo
* console.log(pkg.name) // "libusb.info"
* console.log(pkg.description) // "A cross-platform library to access USB devices"
* console.log(pkg.versions[0]) // "1.0.29" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/libusb-info.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libusbinfoPackage: {
/**
* The display name of this package.
*/
name: 'libusb.info';
/**
* The canonical domain name for this package.
*/
domain: 'libusb.info';
/**
* Brief description of what this package does.
*/
description: 'A cross-platform library to access USB devices';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libusb.info/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install libusb.info';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.0.29', '1.0.28', '1.0.27', '1.0.26'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +libusb.info -- $SHELL -i';
launchpadInstallCommand: 'launchpad install libusb.info'
};
export type LibusbinfoPackage = typeof libusbinfoPackage