/** * **xcodes** - The best command-line tool to install and switch between multiple versions of Xcode. * * @domain `github.com/XcodesOrg/xcodes` * @programs `xcodes` * @version `1.6.2` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/XcodesOrg/xcodes` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomxcodesorgxcodes * console.log(pkg.name) // "xcodes" * console.log(pkg.description) // "The best command-line tool to install and switc..." * console.log(pkg.programs) // ["xcodes"] * console.log(pkg.versions[0]) // "1.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/XcodesOrg/xcodes.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xcodesPackage: { /** * The display name of this package. */ name: 'xcodes'; /** * The canonical domain name for this package. */ domain: 'github.com/XcodesOrg/xcodes'; /** * Brief description of what this package does. */ description: 'The best command-line tool to install and switch between multiple versions of Xcode.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/XcodesOrg/xcodes/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/XcodesOrg/xcodes'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/XcodesOrg/xcodes'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/XcodesOrg/xcodes -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/XcodesOrg/xcodes'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xcodes']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.2', '1.6.1', '1.6.0', '1.5.0', '1.4.1']; aliases: readonly [] }; export type XcodesPackage = typeof xcodesPackage