ts-pkgx
Version:
A library & CLI for managing packages
79 lines • 2.47 kB
TypeScript
/**
* **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 joshuto`
* @name `joshuto`
* @dependencies `libgit2.org@1`
* @companions `github.com/junegunn/fzf`, `crates.io/zoxide`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.joshuto
* // Or access via domain
* const samePkg = pantry.cratesiojoshuto
* console.log(pkg === samePkg) // true
* 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 joshutoPackage: {
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install joshuto';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['joshuto'];
/**
* Related packages that work well with this package.
* Consider installing these for enhanced functionality.
*/
companions: readonly ['github.com/junegunn/fzf', 'crates.io/zoxide'];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libgit2.org@1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.9.9', '0.9.8'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type JoshutoPackage = typeof joshutoPackage