UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.23 kB
/** * **sup** - Super simple deployment tool - think of it like 'make' for a network of servers * * @domain `github.com/pressly/sup` * @programs `sup` * @version `0.5.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install sup` * @name `sup` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.sup * // Or access via domain * const samePkg = pantry.githubcompresslysup * console.log(pkg === samePkg) // true * console.log(pkg.name) // "sup" * console.log(pkg.description) // "Super simple deployment tool - think of it like..." * console.log(pkg.programs) // ["sup"] * console.log(pkg.versions[0]) // "0.5.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/pressly/sup.md * @see https://ts-pkgx.netlify.app/usage */ export declare const supPackage: { /** * The display name of this package. */ name: 'sup'; /** * The canonical domain name for this package. */ domain: 'github.com/pressly/sup'; /** * Brief description of what this package does. */ description: 'Super simple deployment tool - think of it like \'make\' for a network of servers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pressly/sup/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sup'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sup']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sup -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sup' }; export type SupPackage = typeof supPackage