UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **ksops** - KSOPS - A Flexible Kustomize Plugin for SOPS Encrypted Resources * * @domain `viaduct.ai/ksops` * @programs `ksops` * @version `4.3.3` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install ksops` * @name `ksops` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ksops * // Or access via domain * const samePkg = pantry.viaductaiksops * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ksops" * console.log(pkg.description) // "KSOPS - A Flexible Kustomize Plugin for SOPS En..." * console.log(pkg.programs) // ["ksops"] * console.log(pkg.versions[0]) // "4.3.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/viaduct-ai/ksops.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ksopsPackage: { /** * The display name of this package. */ name: 'ksops'; /** * The canonical domain name for this package. */ domain: 'viaduct.ai/ksops'; /** * Brief description of what this package does. */ description: 'KSOPS - A Flexible Kustomize Plugin for SOPS Encrypted Resources'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/viaduct.ai/ksops/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ksops'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ksops']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.3.3', '4.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type KsopsPackage = typeof ksopsPackage