UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.31 kB
/** * **xcodeproj** - Create and modify Xcode projects from Ruby. * * @domain `cocoapods.org/xcodeproj` * @programs `xcodeproj` * @version `1.27.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install xcodeproj` * @name `xcodeproj` * @dependencies `ruby-lang.org~3.2`, `rubygems.org^3` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xcodeproj * // Or access via domain * const samePkg = pantry.cocoapodsorgxcodeproj * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xcodeproj" * console.log(pkg.description) // "Create and modify Xcode projects from Ruby." * console.log(pkg.programs) // ["xcodeproj"] * console.log(pkg.versions[0]) // "1.27.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/cocoapods-org/xcodeproj.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xcodeprojPackage: { /** * The display name of this package. */ name: 'xcodeproj'; /** * The canonical domain name for this package. */ domain: 'cocoapods.org/xcodeproj'; /** * Brief description of what this package does. */ description: 'Create and modify Xcode projects from Ruby.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cocoapods.org/xcodeproj/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xcodeproj'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xcodeproj']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['ruby-lang.org~3.2', 'rubygems.org^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.27.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type XcodeprojPackage = typeof xcodeprojPackage