UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **aws-vault** - A vault for securely storing and accessing AWS credentials in development environments * * @domain `github.com/99designs/aws-vault` * @programs `aws-vault` * @version `7.2.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install aws-vault` * @name `aws-vault` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.awsvault * // Or access via domain * const samePkg = pantry.githubcom99designsawsvault * console.log(pkg === samePkg) // true * console.log(pkg.name) // "aws-vault" * console.log(pkg.description) // "A vault for securely storing and accessing AWS ..." * console.log(pkg.programs) // ["aws-vault"] * console.log(pkg.versions[0]) // "7.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/99designs/aws-vault.md * @see https://ts-pkgx.netlify.app/usage */ export declare const awsvaultPackage: { /** * The display name of this package. */ name: 'aws-vault'; /** * The canonical domain name for this package. */ domain: 'github.com/99designs/aws-vault'; /** * Brief description of what this package does. */ description: 'A vault for securely storing and accessing AWS credentials in development environments'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/99designs/aws-vault/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install aws-vault'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['aws-vault']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type AwsvaultPackage = typeof awsvaultPackage