ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.22 kB
TypeScript
/**
* **albionrpg** - A text-based RPG for the Terminal, written in Rust.
*
* @domain `crates.io/albion_terminal_rpg`
* @programs `albionrpg`
* @version `2024.5.7` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install albionrpg`
* @aliases `albionrpg`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.albionrpg
* // Or access via domain
* const samePkg = pantry.cratesioalbion_terminal_rpg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "albion_terminal_rpg"
* console.log(pkg.description) // "A text-based RPG for the Terminal, written in R..."
* console.log(pkg.programs) // ["albionrpg"]
* console.log(pkg.versions[0]) // "2024.5.7" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/albion_terminal_rpg.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const albionrpgPackage: {
/**
* The display name of this package.
*/
name: 'albion_terminal_rpg';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/albion_terminal_rpg';
/**
* Brief description of what this package does.
*/
description: 'A text-based RPG for the Terminal, written in Rust.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/albion_terminal_rpg/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install albionrpg';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['albionrpg'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2024.5.7'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['albionrpg']
};
export type AlbionrpgPackage = typeof albionrpgPackage