/** * **rpg-cli** - Your filesystem as a dungeon! * * @domain `crates.io/rpg-cli` * @programs `rpg-cli` * @version `1.2.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/rpg-cli` * @homepage https://olano.dev/blog/deconstructing-the-role-playing-videogame/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiorpgcli * console.log(pkg.name) // "rpg-cli" * console.log(pkg.description) // "Your filesystem as a dungeon!" * console.log(pkg.programs) // ["rpg-cli"] * console.log(pkg.versions[0]) // "1.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/rpg-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiorpgcliPackage: { /** * The display name of this package. */ name: 'rpg-cli'; /** * The canonical domain name for this package. */ domain: 'crates.io/rpg-cli'; /** * Brief description of what this package does. */ description: 'Your filesystem as a dungeon!'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/rpg-cli/package.yml'; homepageUrl: 'https://olano.dev/blog/deconstructing-the-role-playing-videogame/'; githubUrl: 'https://github.com/facundoolano/rpg-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/rpg-cli'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/rpg-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/rpg-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rpg-cli']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.0', '1.0.1']; aliases: readonly [] }; export type CratesiorpgcliPackage = typeof cratesiorpgcliPackage