UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.19 kB
/** * **sops** - Simple and flexible tool for managing secrets * * @domain `getsops.io` * @programs `sops` * @version `3.10.2` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install sops` * @name `sops` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.sops * // Or access via domain * const samePkg = pantry.getsopsio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "sops" * console.log(pkg.description) // "Simple and flexible tool for managing secrets" * console.log(pkg.programs) // ["sops"] * console.log(pkg.versions[0]) // "3.10.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/getsops-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sopsPackage: { /** * The display name of this package. */ name: 'sops'; /** * The canonical domain name for this package. */ domain: 'getsops.io'; /** * Brief description of what this package does. */ description: 'Simple and flexible tool for managing secrets'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/getsops.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/getsops/sops'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sops'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sops']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.10.2', '3.10.1', '3.10.0', '3.9.4', '3.9.3', '3.9.2', '3.9.1', '3.9.0', '3.8.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sops -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sops' }; export type SopsPackage = typeof sopsPackage