ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.41 kB
TypeScript
/**
* **libusbmuxd** - A client library to multiplex connections from and to iOS devices
*
* @domain `libimobiledevice.org/libusbmuxd`
* @programs `iproxy`, `inetcat`
* @version `2.1.1` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +libimobiledevice.org/libusbmuxd -- $SHELL -i`
* @dependencies `libimobiledevice.org/libplist^2.4`, `libimobiledevice.org/libimobiledevice-glue^1.2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.libimobiledeviceorglibusbmuxd
* console.log(pkg.name) // "libusbmuxd"
* console.log(pkg.description) // "A client library to multiplex connections from ..."
* console.log(pkg.programs) // ["iproxy", "inetcat"]
* console.log(pkg.versions[0]) // "2.1.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/libimobiledevice-org/libusbmuxd.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const libimobiledeviceorglibusbmuxdPackage: {
/**
* The display name of this package.
*/
name: 'libusbmuxd';
/**
* The canonical domain name for this package.
*/
domain: 'libimobiledevice.org/libusbmuxd';
/**
* Brief description of what this package does.
*/
description: 'A client library to multiplex connections from and to iOS devices';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libimobiledevice.org/libusbmuxd/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +libimobiledevice.org/libusbmuxd -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['iproxy', 'inetcat'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libimobiledevice.org/libplist^2.4', 'libimobiledevice.org/libimobiledevice-glue^1.2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.1.1', '2.1.0', '2.0.2'];
aliases: readonly []
};
export type LibimobiledeviceorglibusbmuxdPackage = typeof libimobiledeviceorglibusbmuxdPackage