UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.57 kB
/** * **idevicedate** - A cross-platform protocol library to communicate with iOS devices * * @domain `libimobiledevice.org` * @programs `idevicedate` * @version `1.3.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install idevicedate` * @aliases `idevicedate` * @dependencies `libimobiledevice.org/libplist^2.4`, `gnu.org/libtasn1^4.19`, `libimobiledevice.org/libusbmuxd^2`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.idevicedate * // Or access via domain * const samePkg = pantry.libimobiledeviceorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libimobiledevice.org" * console.log(pkg.description) // "A cross-platform protocol library to communicat..." * console.log(pkg.programs) // ["idevicedate"] * console.log(pkg.versions[0]) // "1.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libimobiledevice-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const idevicedatePackage: { /** * The display name of this package. */ name: 'libimobiledevice.org'; /** * The canonical domain name for this package. */ domain: 'libimobiledevice.org'; /** * Brief description of what this package does. */ description: 'A cross-platform protocol library to communicate with iOS devices'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libimobiledevice.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install idevicedate'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['idevicedate']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libimobiledevice.org/libplist^2.4', 'gnu.org/libtasn1^4.19', 'libimobiledevice.org/libusbmuxd^2', 'openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['idevicedate'] }; export type IdevicedatePackage = typeof idevicedatePackage