ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.24 kB
TypeScript
/**
* **sdkman-init.sh** - The SDKMAN! Command Line Interface
*
* @domain `sdkman.io`
* @programs `sdkman-init.sh`
* @version `5.20.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sdkman-init.sh`
* @name `sdkman-init.sh`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sdkmaninitsh
* // Or access via domain
* const samePkg = pantry.sdkmanio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sdkman-init.sh"
* console.log(pkg.description) // "The SDKMAN! Command Line Interface"
* console.log(pkg.programs) // ["sdkman-init.sh"]
* console.log(pkg.versions[0]) // "5.20.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sdkman-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sdkmaninitshPackage: {
/**
* The display name of this package.
*/
name: 'sdkman-init.sh';
/**
* The canonical domain name for this package.
*/
domain: 'sdkman.io';
/**
* Brief description of what this package does.
*/
description: 'The SDKMAN! Command Line Interface';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sdkman.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sdkman-init.sh';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sdkman-init.sh'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['5.20.0', '5.19.0', '5.18.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sdkman-init.sh -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sdkman-init.sh'
};
export type SdkmaninitshPackage = typeof sdkmaninitshPackage