ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.57 kB
TypeScript
/**
* **vals** - Helm-like configuration values loader with support for various sources
*
* @domain `github.com/helmfile/vals`
* @programs `vals`
* @version `0.42.0` (34 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install vals`
* @name `vals`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.vals
* // Or access via domain
* const samePkg = pantry.githubcomhelmfilevals
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "vals"
* console.log(pkg.description) // "Helm-like configuration values loader with supp..."
* console.log(pkg.programs) // ["vals"]
* console.log(pkg.versions[0]) // "0.42.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/helmfile/vals.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const valsPackage: {
/**
* The display name of this package.
*/
name: 'vals';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/helmfile/vals';
/**
* Brief description of what this package does.
*/
description: 'Helm-like configuration values loader with support for various sources';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/helmfile/vals/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install vals';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['vals'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.42.0', '0.41.3', '0.41.2', '0.41.1', '0.41.0', '0.40.1', '0.40.0', '0.39.4', '0.39.3', '0.39.2', '0.39.1', '0.39.0', '0.38.0', '0.37.8', '0.37.7', '0.37.6', '0.37.5', '0.37.4', '0.37.3', '0.37.2', '0.37.1', '0.37.0', '0.36.0', '0.35.0', '0.34.1', '0.34.0', '0.33.1', '0.33.0', '0.32.0', '0.31.0', '0.30.0', '0.29.0', '0.28.1', '0.28.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) vals -- $SHELL -i';
launchpadInstallCommand: 'launchpad install vals'
};
export type ValsPackage = typeof valsPackage