ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.1 kB
TypeScript
/**
* **velero** - Backup and migrate Kubernetes applications and their persistent volumes
*
* @domain `velero.io`
* @programs `velero`
* @version `1.16.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install velero`
* @aliases `velero`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.velero
* // Or access via domain
* const samePkg = pantry.veleroio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "velero.io"
* console.log(pkg.description) // "Backup and migrate Kubernetes applications and ..."
* console.log(pkg.programs) // ["velero"]
* console.log(pkg.versions[0]) // "1.16.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/velero-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const veleroPackage: {
/**
* The display name of this package.
*/
name: 'velero.io';
/**
* The canonical domain name for this package.
*/
domain: 'velero.io';
/**
* Brief description of what this package does.
*/
description: 'Backup and migrate Kubernetes applications and their persistent volumes';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/velero.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 velero';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['velero'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.16.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['velero']
};
export type VeleroPackage = typeof veleroPackage