/** * **rye-uv** - Simple CLI tool to migrate from Rye to Uv * * @domain `github.com/lucianosrp/rye-uv` * @programs `rye-uv` * @version `0.1.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/lucianosrp/rye-uv` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomlucianosrpryeuv * console.log(pkg.name) // "rye-uv" * console.log(pkg.description) // "Simple CLI tool to migrate from Rye to Uv" * console.log(pkg.programs) // ["rye-uv"] * console.log(pkg.versions[0]) // "0.1.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/lucianosrp/rye-uv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ryeuvPackage: { /** * The display name of this package. */ name: 'rye-uv'; /** * The canonical domain name for this package. */ domain: 'github.com/lucianosrp/rye-uv'; /** * Brief description of what this package does. */ description: 'Simple CLI tool to migrate from Rye to Uv'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/lucianosrp/rye-uv/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/lucianosrp/rye-uv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/lucianosrp/rye-uv'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/lucianosrp/rye-uv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/lucianosrp/rye-uv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rye-uv']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.3']; aliases: readonly [] }; export type RyeuvPackage = typeof ryeuvPackage