UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.32 kB
/** * **testscript** - Selected Go-internal packages factored out from the standard library * * @domain `go.dev/testscript` * @programs `testscript` * @version `1.14.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install testscript` * @name `testscript` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.testscript * // Or access via domain * const samePkg = pantry.godevtestscript * console.log(pkg === samePkg) // true * console.log(pkg.name) // "testscript" * console.log(pkg.description) // "Selected Go-internal packages factored out from..." * console.log(pkg.programs) // ["testscript"] * console.log(pkg.versions[0]) // "1.14.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/go-dev/testscript.md * @see https://ts-pkgx.netlify.app/usage */ export declare const testscriptPackage: { /** * The display name of this package. */ name: 'testscript'; /** * The canonical domain name for this package. */ domain: 'go.dev/testscript'; /** * Brief description of what this package does. */ description: 'Selected Go-internal packages factored out from the standard library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/go.dev/testscript/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install testscript'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['testscript']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.1', '1.14.0', '1.13.1', '1.12.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) testscript -- $SHELL -i'; launchpadInstallCommand: 'launchpad install testscript' }; export type TestscriptPackage = typeof testscriptPackage