UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.3 kB
/** * **carthage** - A simple, decentralized dependency manager for Cocoa * * @domain `github.com/Carthage/Carthage` * @programs `carthage` * @version `0.40.0` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install carthage` * @name `carthage` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.carthage * // Or access via domain * const samePkg = pantry.githubcomcarthagecarthage * console.log(pkg === samePkg) // true * console.log(pkg.name) // "carthage" * console.log(pkg.description) // "A simple, decentralized dependency manager for ..." * console.log(pkg.programs) // ["carthage"] * console.log(pkg.versions[0]) // "0.40.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/Carthage/Carthage.md * @see https://ts-pkgx.netlify.app/usage */ export declare const carthagePackage: { /** * The display name of this package. */ name: 'carthage'; /** * The canonical domain name for this package. */ domain: 'github.com/Carthage/Carthage'; /** * Brief description of what this package does. */ description: 'A simple, decentralized dependency manager for Cocoa'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Carthage/Carthage/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install carthage'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['carthage']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.40.0', '0.39.1', '0.39.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) carthage -- $SHELL -i'; launchpadInstallCommand: 'launchpad install carthage' }; export type CarthagePackage = typeof carthagePackage