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