ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.6 kB
TypeScript
/**
* **woff2** - Utilities to create and convert Web Open Font File (WOFF) files
*
* @domain `google.com/woff2`
* @programs `woff2_info`, `woff2_decompress`, `woff2_compress`
* @version `1.0.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +google.com/woff2 -- $SHELL -i`
* @name `woff2`
* @dependencies `github.com/google/brotli`, `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.woff2
* // Or access via domain
* const samePkg = pantry.googlecomwoff2
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "woff2"
* console.log(pkg.description) // "Utilities to create and convert Web Open Font F..."
* console.log(pkg.programs) // ["woff2_info", "woff2_decompress", ...]
* console.log(pkg.versions[0]) // "1.0.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/google-com/woff2.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const woff2Package: {
/**
* The display name of this package.
*/
name: 'woff2';
/**
* The canonical domain name for this package.
*/
domain: 'google.com/woff2';
/**
* Brief description of what this package does.
*/
description: 'Utilities to create and convert Web Open Font File (WOFF) files';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/woff2/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/woff2 -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['woff2_info', 'woff2_decompress', 'woff2_compress'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['github.com/google/brotli', 'linux:gnu.org/gcc'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.0.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type Woff2Package = typeof woff2Package