ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.17 kB
TypeScript
/**
* **ncdu** - NCurses Disk Usage
*
* @domain `dev.yorhel.nl/ncdu`
* @programs `ncdu`
* @version `1.22.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install ncdu`
* @name `ncdu`
* @dependencies `invisible-island.net/ncurses`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.ncdu
* // Or access via domain
* const samePkg = pantry.devyorhelnlncdu
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "ncdu"
* console.log(pkg.description) // "NCurses Disk Usage"
* console.log(pkg.programs) // ["ncdu"]
* console.log(pkg.versions[0]) // "1.22.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/dev-yorhel-nl/ncdu.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const ncduPackage: {
/**
* The display name of this package.
*/
name: 'ncdu';
/**
* The canonical domain name for this package.
*/
domain: 'dev.yorhel.nl/ncdu';
/**
* Brief description of what this package does.
*/
description: 'NCurses Disk Usage';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dev.yorhel.nl/ncdu/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install ncdu';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['ncdu'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['invisible-island.net/ncurses'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.22.0', '1.21.0', '1.20.0', '1.19.0', '1.18.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type NcduPackage = typeof ncduPackage