UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.21 kB
/** * **tfsec** - Static analysis security scanner for your terraform code * * @domain `aquasecurity.github.io/tfsec` * @programs `tfsec` * @version `1.28.14` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install tfsec` * @name `tfsec` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.tfsec * // Or access via domain * const samePkg = pantry.aquasecuritygithubiotfsec * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tfsec" * console.log(pkg.description) // "Static analysis security scanner for your terra..." * console.log(pkg.programs) // ["tfsec"] * console.log(pkg.versions[0]) // "1.28.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/aquasecurity-github-io/tfsec.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tfsecPackage: { /** * The display name of this package. */ name: 'tfsec'; /** * The canonical domain name for this package. */ domain: 'aquasecurity.github.io/tfsec'; /** * Brief description of what this package does. */ description: 'Static analysis security scanner for your terraform code'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/aquasecurity.github.io/tfsec/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/aquasecurity/tfsec'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tfsec'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tfsec']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.28.14', '1.28.13', '1.28.12', '1.28.11', '1.28.10', '1.28.9', '1.28.7', '1.28.6', '1.28.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type TfsecPackage = typeof tfsecPackage