UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.52 kB
/** * **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 xcodes` * @name `xcodes` * @companions `aria2.github.io` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xcodes * // Or access via domain * const samePkg = pantry.githubcomxcodesorgxcodes * console.log(pkg === samePkg) // true * 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/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xcodes'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xcodes']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['aria2.github.io']; dependencies: 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) xcodes -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xcodes' }; export type XcodesPackage = typeof xcodesPackage