UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.48 kB
/** * **protoc** - Protocol Buffers implementation in C * * @domain `github.com/protobuf-c/protobuf-c` * @programs `protoc-c`, `protoc-gen-c` * @version `1.5.2` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/protobuf-c/protobuf-c -- $SHELL -i` * @aliases `protoc` * @dependencies `protobuf.dev^25.1`, `abseil.io^20250127` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.protoc * // Or access via domain * const samePkg = pantry.githubcomprotobufcprotobufc * console.log(pkg === samePkg) // true * console.log(pkg.name) // "protobuf-c" * console.log(pkg.description) // "Protocol Buffers implementation in C" * console.log(pkg.programs) // ["protoc-c", "protoc-gen-c"] * console.log(pkg.versions[0]) // "1.5.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/protobuf-c/protobuf-c.md * @see https://ts-pkgx.netlify.app/usage */ export declare const protocPackage: { /** * The display name of this package. */ name: 'protobuf-c'; /** * The canonical domain name for this package. */ domain: 'github.com/protobuf-c/protobuf-c'; /** * Brief description of what this package does. */ description: 'Protocol Buffers implementation in C'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/protobuf-c/protobuf-c/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/protobuf-c/protobuf-c -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['protoc-c', 'protoc-gen-c']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['protobuf.dev^25.1', 'abseil.io^20250127']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.2', '1.5.1', '1.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['protoc'] }; export type ProtocPackage = typeof protocPackage