UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.29 kB
/** * **libusb-config** - Library for USB device access * * @domain `libusb.info/compat` * @programs `libusb-config` * @version `0.1.8` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install libusb-config` * @aliases `libusb-config`, `libusb-compat` * @dependencies `libusb.info^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.libusbconfig * // Or access via domain * const samePkg = pantry.libusbinfocompat * console.log(pkg === samePkg) // true * console.log(pkg.name) // "compat" * console.log(pkg.description) // "Library for USB device access" * console.log(pkg.programs) // ["libusb-config"] * console.log(pkg.versions[0]) // "0.1.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libusb-info/compat.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libusbconfigPackage: { /** * The display name of this package. */ name: 'compat'; /** * The canonical domain name for this package. */ domain: 'libusb.info/compat'; /** * Brief description of what this package does. */ description: 'Library for USB device access'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libusb.info/compat/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-config'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['libusb-config']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libusb.info^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['libusb-config', 'libusb-compat'] }; export type LibusbconfigPackage = typeof libusbconfigPackage