ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.39 kB
TypeScript
/**
* **infracost** - Cloud cost estimates for Terraform in pull requests💰📉 Shift FinOps Left!
*
* @domain `infracost.io`
* @programs `infracost`
* @version `0.10.42` (11 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install infracost`
* @name `infracost`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.infracost
* // Or access via domain
* const samePkg = pantry.infracostio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "infracost"
* console.log(pkg.description) // "Cloud cost estimates for Terraform in pull requ..."
* console.log(pkg.programs) // ["infracost"]
* console.log(pkg.versions[0]) // "0.10.42" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/infracost-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const infracostPackage: {
/**
* The display name of this package.
*/
name: 'infracost';
/**
* The canonical domain name for this package.
*/
domain: 'infracost.io';
/**
* Brief description of what this package does.
*/
description: 'Cloud cost estimates for Terraform in pull requests💰📉 Shift FinOps Left!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/infracost.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 infracost';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['infracost'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.10.42', '0.10.41', '0.10.40', '0.10.39', '0.10.38', '0.10.37', '0.10.36', '0.10.35', '0.10.34', '0.10.33', '0.10.32'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) infracost -- $SHELL -i';
launchpadInstallCommand: 'launchpad install infracost'
};
export type InfracostPackage = typeof infracostPackage