UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2.03 kB
/** * **pyparsing** - Python library for creating PEG parsers * * @domain `github.com/pyparsing/pyparsing` * @version `3.2.3` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/pyparsing/pyparsing -- $SHELL -i` * @dependencies `python.org~3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcompyparsingpyparsing * console.log(pkg.name) // "pyparsing" * console.log(pkg.description) // "Python library for creating PEG parsers" * console.log(pkg.versions[0]) // "3.2.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/pyparsing/pyparsing.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcompyparsingpyparsingPackage: { /** * The display name of this package. */ name: 'pyparsing'; /** * The canonical domain name for this package. */ domain: 'github.com/pyparsing/pyparsing'; /** * Brief description of what this package does. */ description: 'Python library for creating PEG parsers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pyparsing/pyparsing/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pyparsing/pyparsing'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/pyparsing/pyparsing -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.4', '3.1.3', '3.1.2', '3.1.1']; aliases: readonly [] }; export type GithubcompyparsingpyparsingPackage = typeof githubcompyparsingpyparsingPackage