UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.8 kB
/** * **stress-ng** - This is the stress-ng upstream project git repository. stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces. * * @domain `github.com/ColinIanKing/stress-ng` * @programs `stress-ng` * @version `0.19.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install stress-ng` * @name `stress-ng` * @dependencies `github.com/besser82/libxcrypt`, `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.stressng * // Or access via domain * const samePkg = pantry.githubcomcoliniankingstressng * console.log(pkg === samePkg) // true * console.log(pkg.name) // "stress-ng" * console.log(pkg.description) // "This is the stress-ng upstream project git repo..." * console.log(pkg.programs) // ["stress-ng"] * console.log(pkg.versions[0]) // "0.19.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ColinIanKing/stress-ng.md * @see https://ts-pkgx.netlify.app/usage */ export declare const stressngPackage: { /** * The display name of this package. */ name: 'stress-ng'; /** * The canonical domain name for this package. */ domain: 'github.com/ColinIanKing/stress-ng'; /** * Brief description of what this package does. */ description: 'This is the stress-ng upstream project git repository. stress-ng will stress test a computer system in various selectable ways. It was designed to exercise various physical subsystems of a computer as well as the various operating system kernel interfaces.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ColinIanKing/stress-ng/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install stress-ng'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['stress-ng']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/besser82/libxcrypt', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.19.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type StressngPackage = typeof stressngPackage