UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.19 kB
/** * **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 sensors` * @aliases `sensors` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.sensors * // Or access via domain * const samePkg = pantry.githubcomlmsensorslmsensors * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lm-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 sensorsPackage: { /** * The display name of this package. */ name: 'lm-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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sensors'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sensors']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['sensors'] }; export type SensorsPackage = typeof sensorsPackage