ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.23 kB
TypeScript
/**
* **micro** - A modern and intuitive terminal-based text editor
*
* @domain `micro-editor.github.io`
* @programs `micro`
* @version `2.0.14` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install micro`
* @name `micro`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.micro
* // Or access via domain
* const samePkg = pantry.microeditorgithubio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "micro"
* console.log(pkg.description) // "A modern and intuitive terminal-based text editor"
* console.log(pkg.programs) // ["micro"]
* console.log(pkg.versions[0]) // "2.0.14" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/micro-editor-github-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const microPackage: {
/**
* The display name of this package.
*/
name: 'micro';
/**
* The canonical domain name for this package.
*/
domain: 'micro-editor.github.io';
/**
* Brief description of what this package does.
*/
description: 'A modern and intuitive terminal-based text editor';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/micro-editor.github.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install micro';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['micro'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.0.14', '2.0.13', '2.0.12', '2.0.11'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) micro -- $SHELL -i';
launchpadInstallCommand: 'launchpad install micro'
};
export type MicroPackage = typeof microPackage