ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.37 kB
TypeScript
/**
* **robot** - Generic automation framework for acceptance testing and RPA
*
* @domain `robotframework.org`
* @programs `robot`
* @version `7.3.2` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install robot`
* @name `robot`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.robot
* // Or access via domain
* const samePkg = pantry.robotframeworkorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "robot"
* console.log(pkg.description) // "Generic automation framework for acceptance tes..."
* console.log(pkg.programs) // ["robot"]
* console.log(pkg.versions[0]) // "7.3.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/robotframework-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const robotPackage: {
/**
* The display name of this package.
*/
name: 'robot';
/**
* The canonical domain name for this package.
*/
domain: 'robotframework.org';
/**
* Brief description of what this package does.
*/
description: 'Generic automation framework for acceptance testing and RPA';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/robotframework.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install robot';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['robot'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['7.3.2', '7.3.1', '7.3.0', '7.2.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) robot -- $SHELL -i';
launchpadInstallCommand: 'launchpad install robot'
};
export type RobotPackage = typeof robotPackage