UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.31 kB
/** * **xcparse** - Command line tool & Swift framework for parsing Xcode 11+ xcresult * * @domain `github.com/ChargePoint/xcparse` * @programs `xcparse` * @version `2.3.2` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install xcparse` * @name `xcparse` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xcparse * // Or access via domain * const samePkg = pantry.githubcomchargepointxcparse * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xcparse" * console.log(pkg.description) // "Command line tool & Swift framework for parsing..." * console.log(pkg.programs) // ["xcparse"] * console.log(pkg.versions[0]) // "2.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ChargePoint/xcparse.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xcparsePackage: { /** * The display name of this package. */ name: 'xcparse'; /** * The canonical domain name for this package. */ domain: 'github.com/ChargePoint/xcparse'; /** * Brief description of what this package does. */ description: 'Command line tool & Swift framework for parsing Xcode 11+ xcresult'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ChargePoint/xcparse/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xcparse'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xcparse']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.2', '2.3.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) xcparse -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xcparse' }; export type XcparsePackage = typeof xcparsePackage