UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.29 kB
/** * **rye** - Experimental Package Management Solution for Python * * @domain `rye.astral.sh` * @programs `rye` * @version `0.44.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install rye` * @aliases `rye` * @dependencies `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.rye * // Or access via domain * const samePkg = pantry.ryeastralsh * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rye.astral.sh" * console.log(pkg.description) // "Experimental Package Management Solution for Py..." * console.log(pkg.programs) // ["rye"] * console.log(pkg.versions[0]) // "0.44.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rye-astral-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ryePackage: { /** * The display name of this package. */ name: 'rye.astral.sh'; /** * The canonical domain name for this package. */ domain: 'rye.astral.sh'; /** * Brief description of what this package does. */ description: 'Experimental Package Management Solution for Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rye.astral.sh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rye'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rye']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['curl.se/ca-certs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.44.0', '0.43.0', '0.42.0', '0.41.0', '0.40.0', '0.39.0', '0.38.0', '0.37.0', '0.36.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['rye'] }; export type RyePackage = typeof ryePackage