/** * **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` * @dependencies `protobuf.dev^25.1`, `abseil.io^20250127` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomprotobufcprotobufc * console.log(pkg.name) // "protoc" * 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 protobufcPackage: { /** * The display name of this package. */ name: 'protoc'; /** * 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/protobuf-c/protobuf-c'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/protobuf-c/protobuf-c'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/protobuf-c/protobuf-c -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/protobuf-c/protobuf-c'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['protoc-c', 'protoc-gen-c']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['protobuf.dev^25.1', 'abseil.io^20250127']; buildDependencies: readonly []; /** * 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']; aliases: readonly [] }; export type ProtobufcPackage = typeof protobufcPackage