ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.63 kB
TypeScript
/**
* **Midnight Commander** - Terminal-based visual file manager
*
* @domain `midnight-commander.org`
* @programs `mc`, `mcdiff`, `mcedit`, `mcview`
* @version `4.8.33` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +midnight-commander.org -- $SHELL -i`
* @aliases `Midnight Commander`
* @dependencies `invisible-island.net/ncurses`, `gnome.org/glib>=2.30`, `gnu.org/gettext>=0.18.2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.MidnightCommander
* // Or access via domain
* const samePkg = pantry.midnightcommanderorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "midnight-commander.org"
* console.log(pkg.description) // "Terminal-based visual file manager"
* console.log(pkg.programs) // ["mc", "mcdiff", ...]
* console.log(pkg.versions[0]) // "4.8.33" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/midnight-commander-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const midnightCommanderPackage: {
/**
* The display name of this package.
*/
name: 'midnight-commander.org';
/**
* The canonical domain name for this package.
*/
domain: 'midnight-commander.org';
/**
* Brief description of what this package does.
*/
description: 'Terminal-based visual file manager';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/midnight-commander.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +midnight-commander.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mc', 'mcdiff', 'mcedit', 'mcview'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['invisible-island.net/ncurses', 'gnome.org/glib>=2.30', 'gnu.org/gettext>=0.18.2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.8.33', '4.8.32', '4.8.31', '4.8.30', '4.8.29', '4.8.28'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['Midnight Commander']
};
export type MidnightCommanderPackage = typeof midnightCommanderPackage