UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.53 kB
/** * **avro** - Apache Avro is a data serialization system. * * @domain `apache.org/avro` * @programs `avroappend`, `avrocat`, `avromod`, `avropipe` * @version `1.12.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install avro` * @name `avro` * @dependencies `digip.org/jansson`, `google.github.io/snappy`, `tukaani.org/xz`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.avro * // Or access via domain * const samePkg = pantry.apacheorgavro * console.log(pkg === samePkg) // true * console.log(pkg.name) // "avro" * console.log(pkg.description) // "Apache Avro is a data serialization system." * console.log(pkg.programs) // ["avroappend", "avrocat", ...] * console.log(pkg.versions[0]) // "1.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apache-org/avro.md * @see https://ts-pkgx.netlify.app/usage */ export declare const avroPackage: { /** * The display name of this package. */ name: 'avro'; /** * The canonical domain name for this package. */ domain: 'apache.org/avro'; /** * Brief description of what this package does. */ description: 'Apache Avro is a data serialization system.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/avro/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install avro'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['avroappend', 'avrocat', 'avromod', 'avropipe']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['digip.org/jansson', 'google.github.io/snappy', 'tukaani.org/xz', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.12.0', '1.11.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apache.org/avro -- $SHELL -i'; launchpadInstallCommand: 'launchpad install avro' }; export type AvroPackage = typeof avroPackage