UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.11 kB
/** * **nex** - 44BSD re-implementation of vi * * @domain `github.com/blynn/nex` * @programs `nex` * @version `2021.3.30` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install nex` * @name `nex` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.nex * // Or access via domain * const samePkg = pantry.githubcomblynnnex * console.log(pkg === samePkg) // true * console.log(pkg.name) // "nex" * console.log(pkg.description) // "44BSD re-implementation of vi" * console.log(pkg.programs) // ["nex"] * console.log(pkg.versions[0]) // "2021.3.30" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/blynn/nex.md * @see https://ts-pkgx.netlify.app/usage */ export declare const nexPackage: { /** * The display name of this package. */ name: 'nex'; /** * The canonical domain name for this package. */ domain: 'github.com/blynn/nex'; /** * Brief description of what this package does. */ description: '44BSD re-implementation of vi'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/blynn/nex/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install nex'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['nex']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2021.3.30']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) nex -- $SHELL -i'; launchpadInstallCommand: 'launchpad install nex' }; export type NexPackage = typeof nexPackage