/** * **sensors** - Tools for monitoring the temperatures, voltages, and fans * * @domain `github.com/lm-sensors/lm-sensors` * @programs `sensors` * @version `3.6.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/lm-sensors/lm-sensors` * @homepage https://hwmon.wiki.kernel.org/ * @buildDependencies `gnu.org/bison`, `github.com/westes/flex`, `gnu.org/make` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomlmsensorslmsensors * console.log(pkg.name) // "sensors" * console.log(pkg.description) // "Tools for monitoring the temperatures, voltages..." * console.log(pkg.programs) // ["sensors"] * console.log(pkg.versions[0]) // "3.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/lm-sensors/lm-sensors.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lmsensorsPackage: { /** * The display name of this package. */ name: 'sensors'; /** * The canonical domain name for this package. */ domain: 'github.com/lm-sensors/lm-sensors'; /** * Brief description of what this package does. */ description: 'Tools for monitoring the temperatures, voltages, and fans'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/lm-sensors/lm-sensors/package.yml'; homepageUrl: 'https://hwmon.wiki.kernel.org/'; githubUrl: 'https://github.com/lm-sensors/lm-sensors'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/lm-sensors/lm-sensors'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/lm-sensors/lm-sensors -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/lm-sensors/lm-sensors'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sensors']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/bison', 'github.com/westes/flex', 'gnu.org/make']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.0']; aliases: readonly [] }; export type LmsensorsPackage = typeof lmsensorsPackage