UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.86 kB
/** * **jx** - Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Cloud Native pipelines from Tekton * * @domain `jenkins-x.io` * @programs `jx` * @version `3.11.92` (58 versions available) * @versions From newest version to oldest. * * @install `launchpad install jx` * @aliases `jx`, `Jenkins X` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.jx * // Or access via domain * const samePkg = pantry.jenkinsxio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jenkins-x.io" * console.log(pkg.description) // "Jenkins X provides automated CI+CD for Kubernet..." * console.log(pkg.programs) // ["jx"] * console.log(pkg.versions[0]) // "3.11.92" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jenkins-x-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jxPackage: { /** * The display name of this package. */ name: 'jenkins-x.io'; /** * The canonical domain name for this package. */ domain: 'jenkins-x.io'; /** * Brief description of what this package does. */ description: 'Jenkins X provides automated CI+CD for Kubernetes with Preview Environments on Pull Requests using Cloud Native pipelines from Tekton'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jenkins-x.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jx']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.11.92', '3.11.90', '3.11.87', '3.11.81', '3.11.78', '3.11.77', '3.11.76', '3.11.75', '3.11.74', '3.11.71', '3.11.70', '3.11.69', '3.11.66', '3.11.65', '3.11.63', '3.11.56', '3.11.52', '3.11.49', '3.11.48', '3.11.45', '3.11.44', '3.11.41', '3.11.39', '3.11.38', '3.11.27', '3.11.26', '3.11.25', '3.11.24', '3.11.21', '3.11.17', '3.11.14', '3.11.11', '3.11.10', '3.11.8', '3.11.7', '3.11.5', '3.11.4', '3.11.2', '3.11.1', '3.11.0', '3.10.182', '3.10.181', '3.10.180', '3.10.178', '3.10.177', '3.10.176', '3.10.172', '3.10.170', '3.10.169', '3.10.167', '3.10.166', '3.10.161', '3.10.160', '3.10.158', '3.10.157', '3.10.156', '3.10.155', '3.10.154']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['jx', 'Jenkins X'] }; export type JxPackage = typeof jxPackage