UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **ios-deploy** - Install and debug iPhone apps from the command line, without using Xcode * * @domain `github.com/ios-control/ios-deploy` * @programs `ios-deploy` * @version `1.12.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install ios-deploy` * @name `ios-deploy` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.iosdeploy * // Or access via domain * const samePkg = pantry.githubcomioscontroliosdeploy * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ios-deploy" * console.log(pkg.description) // "Install and debug iPhone apps from the command ..." * console.log(pkg.programs) // ["ios-deploy"] * console.log(pkg.versions[0]) // "1.12.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ios-control/ios-deploy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const iosdeployPackage: { /** * The display name of this package. */ name: 'ios-deploy'; /** * The canonical domain name for this package. */ domain: 'github.com/ios-control/ios-deploy'; /** * Brief description of what this package does. */ description: 'Install and debug iPhone apps from the command line, without using Xcode'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ios-control/ios-deploy/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ios-control/ios-deploy'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ios-deploy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ios-deploy']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.12.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) ios-deploy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ios-deploy' }; export type IosdeployPackage = typeof iosdeployPackage