UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.8 kB
/** * **operator-sdk** - SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding. * * @domain `operatorframework.io/operator-sdk` * @programs `operator-sdk` * @version `1.41.1` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install operator-sdk` * @name `operator-sdk` * @dependencies `go.dev^1.19` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.operatorsdk * // Or access via domain * const samePkg = pantry.operatorframeworkiooperatorsdk * console.log(pkg === samePkg) // true * console.log(pkg.name) // "operator-sdk" * console.log(pkg.description) // "SDK for building Kubernetes applications. Provi..." * console.log(pkg.programs) // ["operator-sdk"] * console.log(pkg.versions[0]) // "1.41.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/operatorframework-io/operator-sdk.md * @see https://ts-pkgx.netlify.app/usage */ export declare const operatorsdkPackage: { /** * The display name of this package. */ name: 'operator-sdk'; /** * The canonical domain name for this package. */ domain: 'operatorframework.io/operator-sdk'; /** * Brief description of what this package does. */ description: 'SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/operatorframework.io/operator-sdk/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/operator-framework/operator-sdk'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install operator-sdk'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['operator-sdk']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['go.dev^1.19']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.41.1', '1.41.0', '1.40.0', '1.39.2', '1.39.1', '1.39.0', '1.38.0', '1.37.0', '1.36.1', '1.36.0', '1.35.0', '1.34.2', '1.34.1', '1.34.0', '1.33.0', '1.32.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) operator-sdk -- $SHELL -i'; launchpadInstallCommand: 'launchpad install operator-sdk' }; export type OperatorsdkPackage = typeof operatorsdkPackage