UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.44 kB
/** * **oapi-codegen** - Generate Go client and server boilerplate from OpenAPI 3 specifications * * @domain `github.com/oapi-codegen/oapi-codegen` * @programs `oapi-codegen` * @version `2.5.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install oapi-codegen` * @name `oapi-codegen` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.oapicodegen * // Or access via domain * const samePkg = pantry.githubcomoapicodegenoapicodegen * console.log(pkg === samePkg) // true * console.log(pkg.name) // "oapi-codegen" * console.log(pkg.description) // "Generate Go client and server boilerplate from ..." * console.log(pkg.programs) // ["oapi-codegen"] * console.log(pkg.versions[0]) // "2.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/oapi-codegen/oapi-codegen.md * @see https://ts-pkgx.netlify.app/usage */ export declare const oapicodegenPackage: { /** * The display name of this package. */ name: 'oapi-codegen'; /** * The canonical domain name for this package. */ domain: 'github.com/oapi-codegen/oapi-codegen'; /** * Brief description of what this package does. */ description: 'Generate Go client and server boilerplate from OpenAPI 3 specifications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/oapi-codegen/oapi-codegen/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install oapi-codegen'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['oapi-codegen']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.5.0', '2.4.1', '2.4.0', '2.3.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) oapi-codegen -- $SHELL -i'; launchpadInstallCommand: 'launchpad install oapi-codegen' }; export type OapicodegenPackage = typeof oapicodegenPackage