/**
 * **protoc-gen-jsonschema** - Protobuf to JSON-Schema compiler
 *
 * @domain `github.com/chrusty/protoc-gen-jsonschema`
 * @programs `protoc-gen-jsonschema`
 * @version `1.4.1` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install protoc-gen-jsonschema`
 * @name `protoc-gen-jsonschema`
 * @dependencies `protobuf.dev`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.protocgenjsonschema
 * // Or access via domain
 * const samePkg = pantry.githubcomchrustyprotocgenjsonschema
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "protoc-gen-jsonschema"
 * console.log(pkg.description) // "Protobuf to JSON-Schema compiler"
 * console.log(pkg.programs)    // ["protoc-gen-jsonschema"]
 * console.log(pkg.versions[0]) // "1.4.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/chrusty/protoc-gen-jsonschema.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const protocgenjsonschemaPackage: {
  /**
   * The display name of this package.
   */
  name: 'protoc-gen-jsonschema';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/chrusty/protoc-gen-jsonschema';
  /**
   * Brief description of what this package does.
   */
  description: 'Protobuf to JSON-Schema compiler';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/chrusty/protoc-gen-jsonschema/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-jsonschema';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['protoc-gen-jsonschema'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['protobuf.dev'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.4.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type ProtocgenjsonschemaPackage = typeof protocgenjsonschemaPackage