ts-pkgx
Version:
A library & CLI for managing packages
81 lines • 2.87 kB
TypeScript
/**
* **imageflow_tool** - High-performance image manipulation for web servers. Includes imageflow_server, imageflow_tool, and libimageflow
*
* @domain `imageflow.io/imageflow_tool`
* @programs `imageflow_tool`
* @version `2023.9.25` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install imageflow_tool`
* @name `imageflow_tool`
* @dependencies `openssl.org@1.1`
* @companions `info-zip.org/zip`, `kornel.ski/dssim`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.imageflowtool
* // Or access via domain
* const samePkg = pantry.imageflowioimageflow_tool
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "imageflow_tool"
* console.log(pkg.description) // "High-performance image manipulation for web ser..."
* console.log(pkg.programs) // ["imageflow_tool"]
* console.log(pkg.versions[0]) // "2023.9.25" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/imageflow-io/imageflow_tool.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const imageflowtoolPackage: {
/**
* The display name of this package.
*/
name: 'imageflow_tool';
/**
* The canonical domain name for this package.
*/
domain: 'imageflow.io/imageflow_tool';
/**
* Brief description of what this package does.
*/
description: 'High-performance image manipulation for web servers. Includes imageflow_server, imageflow_tool, and libimageflow';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/imageflow.io/imageflow_tool/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/imazen/imageflow';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install imageflow_tool';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['imageflow_tool'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['info-zip.org/zip', 'kornel.ski/dssim'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org@1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2023.9.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) imageflow_tool -- $SHELL -i';
launchpadInstallCommand: 'launchpad install imageflow_tool'
};
export type ImageflowtoolPackage = typeof imageflowtoolPackage