ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.42 kB
TypeScript
/**
* **saml2aws** - CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP
*
* @domain `github.com/Versent/saml2aws`
* @programs `saml2aws`
* @version `2.36.19` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install saml2aws`
* @name `saml2aws`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.saml2aws
* // Or access via domain
* const samePkg = pantry.githubcomversentsaml2aws
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "saml2aws"
* console.log(pkg.description) // "CLI tool which enables you to login and retriev..."
* console.log(pkg.programs) // ["saml2aws"]
* console.log(pkg.versions[0]) // "2.36.19" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/Versent/saml2aws.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const saml2awsPackage: {
/**
* The display name of this package.
*/
name: 'saml2aws';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/Versent/saml2aws';
/**
* Brief description of what this package does.
*/
description: 'CLI tool which enables you to login and retrieve AWS temporary credentials using a SAML IDP';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Versent/saml2aws/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install saml2aws';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['saml2aws'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.36.19', '2.36.18', '2.36.17', '2.36.16', '2.36.15', '2.36.14', '2.36.13'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) saml2aws -- $SHELL -i';
launchpadInstallCommand: 'launchpad install saml2aws'
};
export type Saml2awsPackage = typeof saml2awsPackage