ts-pkgx
Version:
A library & CLI for managing packages
72 lines • 2.45 kB
TypeScript
/**
* **sql_exporter** - Database agnostic SQL exporter for Prometheus
*
* @domain `github.com/justwatchcom/sql_exporter`
* @programs `sql_exporter`
* @version `0.5.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sql_exporter`
* @name `justwatchcom/sql_exporter`
* @aliases `sql_exporter`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.sqlexporter
* // Or access via domain
* const samePkg = pantry.githubcomjustwatchcomsql_exporter
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "justwatchcom/sql_exporter"
* console.log(pkg.description) // "Database agnostic SQL exporter for Prometheus"
* console.log(pkg.programs) // ["sql_exporter"]
* console.log(pkg.versions[0]) // "0.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/justwatchcom/sql_exporter.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sqlexporterPackage: {
/**
* The display name of this package.
*/
name: 'justwatchcom/sql_exporter';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/justwatchcom/sql_exporter';
/**
* Brief description of what this package does.
*/
description: 'Database agnostic SQL exporter for Prometheus';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/justwatchcom/sql_exporter/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sql_exporter';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sql_exporter'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.5.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['sql_exporter'];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sql_exporter -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sql_exporter'
};
export type SqlexporterPackage = typeof sqlexporterPackage