ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.39 kB
TypeScript
/**
* **rust-kanban** - A kanban board for the terminal built with ❤️ in Rust
*
* @domain `crates.io/rust-kanban`
* @programs `rust-kanban`
* @version `0.10.5` (8 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install rust-kanban`
* @name `rust-kanban`
* @dependencies `openssl.org^1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.rustkanban
* // Or access via domain
* const samePkg = pantry.cratesiorustkanban
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "rust-kanban"
* console.log(pkg.description) // "A kanban board for the terminal built with ❤️ i..."
* console.log(pkg.programs) // ["rust-kanban"]
* console.log(pkg.versions[0]) // "0.10.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/rust-kanban.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const rustkanbanPackage: {
/**
* The display name of this package.
*/
name: 'rust-kanban';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/rust-kanban';
/**
* Brief description of what this package does.
*/
description: 'A kanban board for the terminal built with ❤️ in Rust';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/rust-kanban/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install rust-kanban';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rust-kanban'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org^1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.10.5', '0.10.4', '0.10.3', '0.10.2', '0.10.1', '0.10.0', '0.9.7', '0.9.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type RustkanbanPackage = typeof rustkanbanPackage