/** * **thefuck** - Magnificent app which corrects your previous console command. * * @domain `github.com/nvbn/thefuck` * @programs `thefuck` * @version `3.32.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/nvbn/thefuck` * @dependencies `python.org~3.11` * @buildDependencies `python.org@>=3<3.12` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomnvbnthefuck * console.log(pkg.name) // "thefuck" * console.log(pkg.description) // "Magnificent app which corrects your previous co..." * console.log(pkg.programs) // ["thefuck"] * console.log(pkg.versions[0]) // "3.32.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/nvbn/thefuck.md * @see https://ts-pkgx.netlify.app/usage */ export declare const thefuckPackage: { /** * The display name of this package. */ name: 'thefuck'; /** * The canonical domain name for this package. */ domain: 'github.com/nvbn/thefuck'; /** * Brief description of what this package does. */ description: 'Magnificent app which corrects your previous console command.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/nvbn/thefuck/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/nvbn/thefuck'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/nvbn/thefuck'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/nvbn/thefuck -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/nvbn/thefuck'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['thefuck']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org~3.11']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@>=3<3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.32.0']; aliases: readonly [] }; export type ThefuckPackage = typeof thefuckPackage