UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.4 kB
/** * **chomp** - 'JS Make' - parallel task runner for the frontend ecosystem with a JS extension system. * * @domain `chompbuild.com` * @programs `chomp` * @version `0.2.23` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install chomp` * @name `chomp` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.chomp * // Or access via domain * const samePkg = pantry.chompbuildcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "chomp" * console.log(pkg.description) // "'JS Make' - parallel task runner for the fronte..." * console.log(pkg.programs) // ["chomp"] * console.log(pkg.versions[0]) // "0.2.23" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/chompbuild-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const chompPackage: { /** * The display name of this package. */ name: 'chomp'; /** * The canonical domain name for this package. */ domain: 'chompbuild.com'; /** * Brief description of what this package does. */ description: '\'JS Make\' - parallel task runner for the frontend ecosystem with a JS extension system.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/chompbuild.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install chomp'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['chomp']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.23']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) chomp -- $SHELL -i'; launchpadInstallCommand: 'launchpad install chomp' }; export type ChompPackage = typeof chompPackage