/** * **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 robotframework.org` * @homepage https://robotframework.org/ * @dependencies `pkgx.sh^1` * @buildDependencies `python.org@^3`, `cryptography.io`, `libsodium.org` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.robotframeworkorg * 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 robotframeworkorgPackage: { /** * 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: 'https://robotframework.org/'; githubUrl: 'https://github.com/robotframework/robotframework'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install robotframework.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +robotframework.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install robotframework.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['robot']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@^3', 'cryptography.io', 'libsodium.org']; /** * 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']; aliases: readonly [] }; export type RobotframeworkorgPackage = typeof robotframeworkorgPackage