UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.4 kB
/** * **kube-linter** - KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices. * * @domain `kubelinter.io` * @programs `kube-linter` * @version `0.7.4` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install kube-linter` * @aliases `kube-linter` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.kubelinter * // Or access via domain * const samePkg = pantry.kubelinterio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "kubelinter.io" * console.log(pkg.description) // "KubeLinter is a static analysis tool that check..." * console.log(pkg.programs) // ["kube-linter"] * console.log(pkg.versions[0]) // "0.7.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kubelinter-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const kubelinterPackage: { /** * The display name of this package. */ name: 'kubelinter.io'; /** * The canonical domain name for this package. */ domain: 'kubelinter.io'; /** * Brief description of what this package does. */ description: 'KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kubelinter.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 kube-linter'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kube-linter']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.4', '0.7.3', '0.7.2', '0.7.1', '0.7.0', '0.6.8']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['kube-linter'] }; export type KubelinterPackage = typeof kubelinterPackage