ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.61 kB
TypeScript
/**
* **sonar-scanner** - Scanner CLI for SonarQube (Server, Cloud)
*
* @domain `sonarqube.org/sonarscanner`
* @programs `sonar-scanner`, `sonar-scanner-debug`
* @version `7.1.0.4889` (10 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +sonarqube.org/sonarscanner -- $SHELL -i`
* @aliases `sonar-scanner`
* @dependencies `openjdk.org^21`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.sonarscanner
* // Or access via domain
* const samePkg = pantry.sonarqubeorgsonarscanner
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sonarscanner"
* console.log(pkg.description) // "Scanner CLI for SonarQube (Server, Cloud)"
* console.log(pkg.programs) // ["sonar-scanner", "sonar-scanner-debug"]
* console.log(pkg.versions[0]) // "7.1.0.4889" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sonarqube-org/sonarscanner.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sonarscannerPackage: {
/**
* The display name of this package.
*/
name: 'sonarscanner';
/**
* The canonical domain name for this package.
*/
domain: 'sonarqube.org/sonarscanner';
/**
* Brief description of what this package does.
*/
description: 'Scanner CLI for SonarQube (Server, Cloud)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sonarqube.org/sonarscanner/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +sonarqube.org/sonarscanner -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sonar-scanner', 'sonar-scanner-debug'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openjdk.org^21'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['7.1.0.4889', '7.0.2.4839', '7.0.1.4817', '7.0.0.4796', '6.2.1.4610', '6.2.0.4584', '6.1.0.4477', '6.0.0.4432', '5.0.2.4997', '5.0.1.3006'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['sonar-scanner']
};
export type SonarscannerPackage = typeof sonarscannerPackage