UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.99 kB
/** * **goyacc** - Parser Generator for Go * * @domain `modernc.org/goyacc` * @programs `goyacc` * @version `1.0.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install goyacc` * @name `goyacc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.goyacc * // Or access via domain * const samePkg = pantry.moderncorggoyacc * console.log(pkg === samePkg) // true * console.log(pkg.name) // "goyacc" * console.log(pkg.description) // "Parser Generator for Go" * console.log(pkg.programs) // ["goyacc"] * console.log(pkg.versions[0]) // "1.0.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/modernc-org/goyacc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const goyaccPackage: { /** * The display name of this package. */ name: 'goyacc'; /** * The canonical domain name for this package. */ domain: 'modernc.org/goyacc'; /** * Brief description of what this package does. */ description: 'Parser Generator for Go'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/modernc.org/goyacc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install goyacc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['goyacc']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GoyaccPackage = typeof goyaccPackage