ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.53 kB
TypeScript
/**
* **steampipe** - Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.
*
* @domain `steampipe.io`
* @programs `steampipe`
* @version `2.0.1` (36 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install steampipe`
* @aliases `steampipe`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.steampipe
* // Or access via domain
* const samePkg = pantry.steampipeio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "steampipe.io"
* console.log(pkg.description) // "Zero-ETL, infinite possibilities. Live query AP..."
* console.log(pkg.programs) // ["steampipe"]
* console.log(pkg.versions[0]) // "2.0.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/steampipe-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const steampipePackage: {
/**
* The display name of this package.
*/
name: 'steampipe.io';
/**
* The canonical domain name for this package.
*/
domain: 'steampipe.io';
/**
* Brief description of what this package does.
*/
description: 'Zero-ETL, infinite possibilities. Live query APIs, code & more with SQL. No DB required.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/steampipe.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 steampipe';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['steampipe'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.0.1', '2.0.0', '1.2.0', '1.1.4', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.3', '1.0.2', '1.0.1', '1.0.0', '0.24.2', '0.24.1', '0.24.0', '0.23.5', '0.23.4', '0.23.3', '0.23.2', '0.23.1', '0.23.0', '0.22.2', '0.22.1', '0.22.0', '0.21.8', '0.21.7', '0.21.6', '0.21.5', '0.21.4', '0.21.3', '0.21.2', '0.21.1', '0.21.0', '0.20.12', '0.20.11', '0.20.10'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['steampipe']
};
export type SteampipePackage = typeof steampipePackage