/** * **joshuto** - ranger-like terminal file manager written in Rust * * @domain `crates.io/joshuto` * @programs `joshuto` * @version `0.9.9` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/joshuto` * @homepage https://crates.io/crates/joshuto * @dependencies `libgit2.org@1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiojoshuto * console.log(pkg.name) // "joshuto" * console.log(pkg.description) // "ranger-like terminal file manager written in Rust" * console.log(pkg.programs) // ["joshuto"] * console.log(pkg.versions[0]) // "0.9.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/joshuto.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiojoshutoPackage: { /** * The display name of this package. */ name: 'joshuto'; /** * The canonical domain name for this package. */ domain: 'crates.io/joshuto'; /** * Brief description of what this package does. */ description: 'ranger-like terminal file manager written in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/joshuto/package.yml'; homepageUrl: 'https://crates.io/crates/joshuto'; githubUrl: 'https://github.com/kamiyaa/joshuto'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/joshuto'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/joshuto -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/joshuto'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['joshuto']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libgit2.org@1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.9', '0.9.8']; aliases: readonly [] }; export type CratesiojoshutoPackage = typeof cratesiojoshutoPackage