ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.07 kB
TypeScript
/**
* **dust** - A more intuitive version of du in rust
*
* @domain `crates.io/du-dust`
* @programs `dust`
* @version `1.2.1` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install dust`
* @aliases `dust`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.dust
* // Or access via domain
* const samePkg = pantry.cratesiodudust
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "du-dust"
* console.log(pkg.description) // "A more intuitive version of du in rust"
* console.log(pkg.programs) // ["dust"]
* console.log(pkg.versions[0]) // "1.2.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/du-dust.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const dustPackage: {
/**
* The display name of this package.
*/
name: 'du-dust';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/du-dust';
/**
* Brief description of what this package does.
*/
description: 'A more intuitive version of du in rust';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/du-dust/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install dust';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['dust'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.2.1', '1.2.0', '1.1.2', '1.1.1', '1.1.0', '1.0.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['dust']
};
export type DustPackage = typeof dustPackage