ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.24 kB
TypeScript
/**
* **k6** - A modern load testing tool, using Go and JavaScript - https://k6.io
*
* @domain `k6.io`
* @programs `k6`
* @version `1.0.0` (24 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install k6`
* @aliases `k6`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.k6
* // Or access via domain
* const samePkg = pantry.k6io
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "k6.io"
* console.log(pkg.description) // "A modern load testing tool, using Go and JavaSc..."
* console.log(pkg.programs) // ["k6"]
* console.log(pkg.versions[0]) // "1.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/k6-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const k6Package: {
/**
* The display name of this package.
*/
name: 'k6.io';
/**
* The canonical domain name for this package.
*/
domain: 'k6.io';
/**
* Brief description of what this package does.
*/
description: 'A modern load testing tool, using Go and JavaScript - https://k6.io';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/k6.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 k6';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['k6'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.0.0', '0.59.0', '0.58.0', '0.57.0', '0.56.0', '0.55.2', '0.55.1', '0.55.0', '0.54.0', '0.53.0', '0.52.0', '0.51.0', '0.50.0', '0.49.0', '0.48.0', '0.47.0', '0.46.0', '0.45.1', '0.45.0', '0.44.1', '0.44.0', '0.43.1', '0.43.0', '0.42.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['k6']
};
export type K6Package = typeof k6Package