UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

66 lines 2.37 kB
/** * **android.com/cmdline-tools** - pkgx package * * @domain `android.com/cmdline-tools` * @programs `apkanalyzer`, `avdmanager`, `lint`, `profgen`, `resourceshrinker`, ... (+3 more) * @version `13114758.0.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install android.com/cmdline-tools` * @dependencies `openjdk.org>=17` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.androidcomcmdlinetools * console.log(pkg.name) // "android.com/cmdline-tools" * console.log(pkg.programs) // ["apkanalyzer", "avdmanager", ...] * console.log(pkg.versions[0]) // "13114758.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/android-com/cmdline-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const androidcomcmdlinetoolsPackage: { /** * The display name of this package. */ name: 'android.com/cmdline-tools'; /** * The canonical domain name for this package. */ domain: 'android.com/cmdline-tools'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/android.com/cmdline-tools/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install android.com/cmdline-tools'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['apkanalyzer', 'avdmanager', 'lint', 'profgen', 'resourceshrinker', 'retrace', 'screenshot2', 'sdkmanager']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org>=17']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['13114758.0.0', '11076708.0.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +android.com/cmdline-tools -- $SHELL -i'; launchpadInstallCommand: 'launchpad install android.com/cmdline-tools' }; export type AndroidcomcmdlinetoolsPackage = typeof androidcomcmdlinetoolsPackage