ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.53 kB
TypeScript
/**
* **redfishtool** - A Python34 program that implements a command line tool for accessing the Redfish API.
*
* @domain `github.com/DMTF/redfishtool`
* @programs `redfishtool`
* @version `1.1.8` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install redfishtool`
* @name `redfishtool`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.redfishtool
* // Or access via domain
* const samePkg = pantry.githubcomdmtfredfishtool
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "redfishtool"
* console.log(pkg.description) // "A Python34 program that implements a command li..."
* console.log(pkg.programs) // ["redfishtool"]
* console.log(pkg.versions[0]) // "1.1.8" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/DMTF/redfishtool.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const redfishtoolPackage: {
/**
* The display name of this package.
*/
name: 'redfishtool';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/DMTF/redfishtool';
/**
* Brief description of what this package does.
*/
description: 'A Python34 program that implements a command line tool for accessing the Redfish API.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/DMTF/redfishtool/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install redfishtool';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['redfishtool'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.8'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) redfishtool -- $SHELL -i';
launchpadInstallCommand: 'launchpad install redfishtool'
};
export type RedfishtoolPackage = typeof redfishtoolPackage