ts-pkgx
Version:
A library & CLI for managing packages
67 lines • 2.63 kB
TypeScript
/**
* **google.com/webp** - Mirror only. Please do not send pull requests. See https://chromium.googlesource.com/webm/libwebp/+/HEAD/CONTRIBUTING.md.
*
* @domain `google.com/webp`
* @programs `cwebp`, `dwebp`, `gif2webp`, `img2webp`, `vwebp`, ... (+2 more)
* @version `1.6.0` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install google.com/webp`
* @dependencies `giflib.sourceforge.io^5`, `libjpeg-turbo.org^2`, `libpng.org^1`, ... (+1 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.googlecomwebp
* console.log(pkg.name) // "google.com/webp"
* console.log(pkg.description) // "Mirror only. Please do not send pull requests. ..."
* console.log(pkg.programs) // ["cwebp", "dwebp", ...]
* console.log(pkg.versions[0]) // "1.6.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/google-com/webp.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const googlecomwebpPackage: {
/**
* The display name of this package.
*/
name: 'google.com/webp';
/**
* The canonical domain name for this package.
*/
domain: 'google.com/webp';
/**
* Brief description of what this package does.
*/
description: 'Mirror only. Please do not send pull requests. See https://chromium.googlesource.com/webm/libwebp/+/HEAD/CONTRIBUTING.md.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/webp/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install google.com/webp';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cwebp', 'dwebp', 'gif2webp', 'img2webp', 'vwebp', 'webpinfo', 'webpmux'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['giflib.sourceforge.io^5', 'libjpeg-turbo.org^2', '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 ['1.6.0', '1.5.0', '1.4.0', '1.3.2', '1.3.1', '1.3.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +google.com/webp -- $SHELL -i';
launchpadInstallCommand: 'launchpad install google.com/webp'
};
export type GooglecomwebpPackage = typeof googlecomwebpPackage