ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.41 kB
TypeScript
/**
* **exiftool** - Perl lib for reading and writing EXIF metadata
*
* @domain `exiftool.org`
* @programs `exiftool`
* @version `13.30.0` (8 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install exiftool`
* @name `exiftool`
* @dependencies `perl.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.exiftool
* // Or access via domain
* const samePkg = pantry.exiftoolorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "exiftool"
* console.log(pkg.description) // "Perl lib for reading and writing EXIF metadata"
* console.log(pkg.programs) // ["exiftool"]
* console.log(pkg.versions[0]) // "13.30.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/exiftool-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const exiftoolPackage: {
/**
* The display name of this package.
*/
name: 'exiftool';
/**
* The canonical domain name for this package.
*/
domain: 'exiftool.org';
/**
* Brief description of what this package does.
*/
description: 'Perl lib for reading and writing EXIF metadata';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/exiftool.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 exiftool';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['exiftool'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['perl.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['13.30.0', '13.25.0', '13.10.0', '13.0.0', '12.76.0', '12.75.0', '12.70.0', '12.60.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) exiftool -- $SHELL -i';
launchpadInstallCommand: 'launchpad install exiftool'
};
export type ExiftoolPackage = typeof exiftoolPackage