ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.91 kB
TypeScript
/**
* **smartmontools.org** - SMART hard drive monitoring
*
* @domain `smartmontools.org`
* @programs `smartctl`, `smartd`
* @version `7.5.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +smartmontools.org -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.smartmontoolsorg
* console.log(pkg.name) // "smartmontools.org"
* console.log(pkg.description) // "SMART hard drive monitoring"
* console.log(pkg.programs) // ["smartctl", "smartd"]
* console.log(pkg.versions[0]) // "7.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/smartmontools-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const smartmontoolsorgPackage: {
/**
* The display name of this package.
*/
name: 'smartmontools.org';
/**
* The canonical domain name for this package.
*/
domain: 'smartmontools.org';
/**
* Brief description of what this package does.
*/
description: 'SMART hard drive monitoring';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/smartmontools.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 +smartmontools.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['smartctl', 'smartd'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['7.5.0', '7.4.0', '7.3.0'];
aliases: readonly []
};
export type SmartmontoolsorgPackage = typeof smartmontoolsorgPackage