ts-pkgx
Version:
A library & CLI for managing packages
65 lines • 2.29 kB
TypeScript
/**
* **kotlinlang.org** - Statically typed programming language for the JVM
*
* @domain `kotlinlang.org`
* @programs `kapt`, `kotlin`, `kotlinc`, `kotlinc-js`, `kotlinc-jvm`
* @version `2.1.21` (16 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +kotlinlang.org -- $SHELL -i`
* @dependencies `openjdk.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.kotlinlangorg
* console.log(pkg.name) // "kotlinlang.org"
* console.log(pkg.description) // "Statically typed programming language for the JVM"
* console.log(pkg.programs) // ["kapt", "kotlin", ...]
* console.log(pkg.versions[0]) // "2.1.21" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/kotlinlang-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kotlinlangorgPackage: {
/**
* The display name of this package.
*/
name: 'kotlinlang.org';
/**
* The canonical domain name for this package.
*/
domain: 'kotlinlang.org';
/**
* Brief description of what this package does.
*/
description: 'Statically typed programming language for the JVM';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kotlinlang.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 +kotlinlang.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kapt', 'kotlin', 'kotlinc', 'kotlinc-js', 'kotlinc-jvm'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openjdk.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.1.21', '2.1.20', '2.1.10', '2.1.0', '2.0.21', '2.0.20', '2.0.10', '2.0.0', '1.9.25', '1.9.24', '1.9.23', '1.9.22', '1.9.21', '1.9.20', '1.9.10', '1.9.0'];
aliases: readonly []
};
export type KotlinlangorgPackage = typeof kotlinlangorgPackage