UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.46 kB
/** * **xcodegen** - Generate your Xcode project from a spec file and your folder structure * * @domain `github.com/yonaskolb/XcodeGen` * @programs `xcodegen` * @version `2.44.1` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install xcodegen` * @name `xcodegen` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xcodegen * // Or access via domain * const samePkg = pantry.githubcomyonaskolbxcodegen * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xcodegen" * console.log(pkg.description) // "Generate your Xcode project from a spec file an..." * console.log(pkg.programs) // ["xcodegen"] * console.log(pkg.versions[0]) // "2.44.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/yonaskolb/XcodeGen.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xcodegenPackage: { /** * The display name of this package. */ name: 'xcodegen'; /** * The canonical domain name for this package. */ domain: 'github.com/yonaskolb/XcodeGen'; /** * Brief description of what this package does. */ description: 'Generate your Xcode project from a spec file and your folder structure'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/yonaskolb/XcodeGen/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xcodegen'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xcodegen']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.44.1', '2.44.0', '2.43.0', '2.42.0', '2.41.0', '2.40.1', '2.40.0', '2.39.1', '2.39.0', '2.38.0', '2.37.0', '2.36.1', '2.36.0', '2.35.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) xcodegen -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xcodegen' }; export type XcodegenPackage = typeof xcodegenPackage