ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.25 kB
TypeScript
/**
* **conform** - Policy enforcement for your pipelines.
*
* @domain `github.com/siderolabs/conform`
* @programs `conform`
* @version `2022.10.25` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install conform`
* @name `conform`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.conform
* // Or access via domain
* const samePkg = pantry.githubcomsiderolabsconform
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "conform"
* console.log(pkg.description) // "Policy enforcement for your pipelines."
* console.log(pkg.programs) // ["conform"]
* console.log(pkg.versions[0]) // "2022.10.25" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/siderolabs/conform.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const conformPackage: {
/**
* The display name of this package.
*/
name: 'conform';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/siderolabs/conform';
/**
* Brief description of what this package does.
*/
description: 'Policy enforcement for your pipelines.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/siderolabs/conform/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install conform';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['conform'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2022.10.25'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) conform -- $SHELL -i';
launchpadInstallCommand: 'launchpad install conform'
};
export type ConformPackage = typeof conformPackage