ts-pkgx
Version:
A library & CLI for managing packages
58 lines • 1.75 kB
TypeScript
/**
* **editline** - pkgx package
*
* @domain `thrysoee.dk/editline`
* @version `3.1.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +thrysoee.dk/editline -- $SHELL -i`
* @dependencies `invisible-island.net/ncurses`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.thrysoeedkeditline
* console.log(pkg.name) // "editline"
* console.log(pkg.versions[0]) // "3.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/thrysoee-dk/editline.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const thrysoeedkeditlinePackage: {
/**
* The display name of this package.
*/
name: 'editline';
/**
* The canonical domain name for this package.
*/
domain: 'thrysoee.dk/editline';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/thrysoee.dk/editline/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +thrysoee.dk/editline -- $SHELL -i';
programs: readonly [];
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 ['3.1.0'];
aliases: readonly []
};
export type ThrysoeedkeditlinePackage = typeof thrysoeedkeditlinePackage