UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.39 kB
/** * **pyqt-bundle** - The PyQt build system * * @domain `riverbankcomputing.com/pyqt-builder` * @programs `pyqt-bundle` * @version `1.15.4` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install pyqt-bundle` * @aliases `pyqt-bundle` * @dependencies `python.org~3.11`, `riverbankcomputing.com/sip` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.pyqtbundle * // Or access via domain * const samePkg = pantry.riverbankcomputingcompyqtbuilder * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pyqt-builder" * console.log(pkg.description) // "The PyQt build system" * console.log(pkg.programs) // ["pyqt-bundle"] * console.log(pkg.versions[0]) // "1.15.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/riverbankcomputing-com/pyqt-builder.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pyqtbundlePackage: { /** * The display name of this package. */ name: 'pyqt-builder'; /** * The canonical domain name for this package. */ domain: 'riverbankcomputing.com/pyqt-builder'; /** * Brief description of what this package does. */ description: 'The PyQt build system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/riverbankcomputing.com/pyqt-builder/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pyqt-bundle'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pyqt-bundle']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11', 'riverbankcomputing.com/sip']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.15.4', '1.15.3', '1.15.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['pyqt-bundle'] }; export type PyqtbundlePackage = typeof pyqtbundlePackage