ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.41 kB
TypeScript
/**
* **opj** - Official repository of the OpenJPEG project
*
* @domain `openjpeg.org`
* @programs `opj_compress`, `opj_decompress`, `opj_dump`
* @version `2.5.3` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +openjpeg.org -- $SHELL -i`
* @aliases `opj`
* @dependencies `libpng.org^1`, `simplesystems.org/libtiff^4`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.opj
* // Or access via domain
* const samePkg = pantry.openjpegorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "openjpeg.org"
* console.log(pkg.description) // "Official repository of the OpenJPEG project"
* console.log(pkg.programs) // ["opj_compress", "opj_decompress", ...]
* console.log(pkg.versions[0]) // "2.5.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/openjpeg-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const opjPackage: {
/**
* The display name of this package.
*/
name: 'openjpeg.org';
/**
* The canonical domain name for this package.
*/
domain: 'openjpeg.org';
/**
* Brief description of what this package does.
*/
description: 'Official repository of the OpenJPEG project';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openjpeg.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +openjpeg.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['opj_compress', 'opj_decompress', 'opj_dump'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libpng.org^1', 'simplesystems.org/libtiff^4'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.5.3', '2.5.2', '2.5.1', '2.5.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['opj']
};
export type OpjPackage = typeof opjPackage