UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.25 kB
/** * **brotli** - Generic-purpose lossless compression algorithm by Google * * @domain `github.com/google/brotli` * @programs `brotli` * @version `1.1.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install brotli` * @name `brotli` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.brotli * // Or access via domain * const samePkg = pantry.githubcomgooglebrotli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "brotli" * console.log(pkg.description) // "Generic-purpose lossless compression algorithm ..." * console.log(pkg.programs) // ["brotli"] * console.log(pkg.versions[0]) // "1.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/google/brotli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const brotliPackage: { /** * The display name of this package. */ name: 'brotli'; /** * The canonical domain name for this package. */ domain: 'github.com/google/brotli'; /** * Brief description of what this package does. */ description: 'Generic-purpose lossless compression algorithm by Google'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/google/brotli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install brotli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['brotli']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.0', '1.0.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) brotli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install brotli' }; export type BrotliPackage = typeof brotliPackage