UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.46 kB
/** * **protoc-gen-go** - Go support for Google's protocol buffers * * @domain `google.com/protobuf-go` * @programs `protoc-gen-go` * @version `1.36.6` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install protoc-gen-go` * @aliases `protoc-gen-go` * @companions `protobuf.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.protocgengo * // Or access via domain * const samePkg = pantry.googlecomprotobufgo * console.log(pkg === samePkg) // true * console.log(pkg.name) // "protobuf-go" * console.log(pkg.description) // "Go support for Google's protocol buffers" * console.log(pkg.programs) // ["protoc-gen-go"] * console.log(pkg.versions[0]) // "1.36.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/google-com/protobuf-go.md * @see https://ts-pkgx.netlify.app/usage */ export declare const protocgengoPackage: { /** * The display name of this package. */ name: 'protobuf-go'; /** * The canonical domain name for this package. */ domain: 'google.com/protobuf-go'; /** * Brief description of what this package does. */ description: 'Go support for Google\'s protocol buffers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/protobuf-go/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install protoc-gen-go'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['protoc-gen-go']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['protobuf.dev']; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.36.6', '1.36.5', '1.36.4', '1.36.3', '1.36.2', '1.36.1', '1.36.0', '1.35.2', '1.35.1', '1.34.2', '1.34.1', '1.34.0', '1.33.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['protoc-gen-go'] }; export type ProtocgengoPackage = typeof protocgengoPackage