UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.34 kB
/** * **zx** - A tool for writing better scripts * * @domain `google.com/zx` * @programs `zx` * @version `8.5.5` (29 versions available) * @versions From newest version to oldest. * * @install `launchpad install zx` * @name `zx` * @dependencies `nodejs.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zx * // Or access via domain * const samePkg = pantry.googlecomzx * console.log(pkg === samePkg) // true * console.log(pkg.name) // "zx" * console.log(pkg.description) // "A tool for writing better scripts" * console.log(pkg.programs) // ["zx"] * console.log(pkg.versions[0]) // "8.5.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/google-com/zx.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zxPackage: { /** * The display name of this package. */ name: 'zx'; /** * The canonical domain name for this package. */ domain: 'google.com/zx'; /** * Brief description of what this package does. */ description: 'A tool for writing better scripts'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/zx/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zx'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zx']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['nodejs.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.5.5', '8.5.4', '8.5.3', '8.5.2', '8.5.0', '8.4.1', '8.4.0', '8.3.2', '8.3.1', '8.3.0', '8.2.4', '8.2.3', '8.2.2', '8.2.1', '8.2.0', '8.1.9', '8.1.8', '8.1.7', '8.1.6', '8.1.5', '8.1.4', '8.1.3', '8.1.2', '8.1.1', '8.1.0', '8.0.2', '8.0.1', '8.0.0', '7.2.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ZxPackage = typeof zxPackage