UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.47 kB
/** * **overmind** - Process manager for Procfile-based applications and tmux * * @domain `github.com/darthsim/overmind` * @programs `overmind` * @version `2.5.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install overmind` * @name `overmind` * @dependencies `github.com/tmux/tmux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.overmind * // Or access via domain * const samePkg = pantry.githubcomdarthsimovermind * console.log(pkg === samePkg) // true * console.log(pkg.name) // "overmind" * console.log(pkg.description) // "Process manager for Procfile-based applications..." * console.log(pkg.programs) // ["overmind"] * console.log(pkg.versions[0]) // "2.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/darthsim/overmind.md * @see https://ts-pkgx.netlify.app/usage */ export declare const overmindPackage: { /** * The display name of this package. */ name: 'overmind'; /** * The canonical domain name for this package. */ domain: 'github.com/darthsim/overmind'; /** * Brief description of what this package does. */ description: 'Process manager for Procfile-based applications and tmux'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/darthsim/overmind/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install overmind'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['overmind']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/tmux/tmux']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.5.1', '2.5.0', '2.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) overmind -- $SHELL -i'; launchpadInstallCommand: 'launchpad install overmind' }; export type OvermindPackage = typeof overmindPackage