ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.5 kB
TypeScript
/**
* **mosh** - Remote terminal application
*
* @domain `mosh.org`
* @programs `mosh-client`, `mosh-server`
* @version `1.4.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +mosh.org -- $SHELL -i`
* @aliases `mosh`
* @dependencies `protobuf.dev@26.1.0`, `invisible-island.net/ncurses@6`, `zlib.net@1.3`, ... (+1 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.mosh
* // Or access via domain
* const samePkg = pantry.moshorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mosh.org"
* console.log(pkg.description) // "Remote terminal application"
* console.log(pkg.programs) // ["mosh-client", "mosh-server"]
* console.log(pkg.versions[0]) // "1.4.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/mosh-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const moshPackage: {
/**
* The display name of this package.
*/
name: 'mosh.org';
/**
* The canonical domain name for this package.
*/
domain: 'mosh.org';
/**
* Brief description of what this package does.
*/
description: 'Remote terminal application';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mosh.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 +mosh.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mosh-client', 'mosh-server'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['protobuf.dev@26.1.0', 'invisible-island.net/ncurses@6', 'zlib.net@1.3', 'linux:openssl.org@3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.4.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['mosh']
};
export type MoshPackage = typeof moshPackage