UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **watchexec** - Executes commands in response to file modifications * * @domain `watchexec.github.io` * @programs `watchexec` * @version `2.3.2` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install watchexec` * @name `watchexec` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.watchexec * // Or access via domain * const samePkg = pantry.watchexecgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "watchexec" * console.log(pkg.description) // "Executes commands in response to file modificat..." * console.log(pkg.programs) // ["watchexec"] * console.log(pkg.versions[0]) // "2.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/watchexec-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const watchexecPackage: { /** * The display name of this package. */ name: 'watchexec'; /** * The canonical domain name for this package. */ domain: 'watchexec.github.io'; /** * Brief description of what this package does. */ description: 'Executes commands in response to file modifications'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/watchexec.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 watchexec'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['watchexec']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.2', '2.3.1', '2.3.0', '2.2.1', '2.2.0', '2.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) watchexec -- $SHELL -i'; launchpadInstallCommand: 'launchpad install watchexec' }; export type WatchexecPackage = typeof watchexecPackage