ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.31 kB
TypeScript
/**
* **arduino-cli** - Arduino command-line interface
*
* @domain `arduino.github.io/arduino-cli`
* @programs `arduino-cli`
* @version `1.2.2` (20 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install arduino-cli`
* @name `arduino-cli`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.arduinocli
* // Or access via domain
* const samePkg = pantry.arduinogithubioarduinocli
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "arduino-cli"
* console.log(pkg.description) // "Arduino command-line interface"
* console.log(pkg.programs) // ["arduino-cli"]
* console.log(pkg.versions[0]) // "1.2.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/arduino-github-io/arduino-cli.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const arduinocliPackage: {
/**
* The display name of this package.
*/
name: 'arduino-cli';
/**
* The canonical domain name for this package.
*/
domain: 'arduino.github.io/arduino-cli';
/**
* Brief description of what this package does.
*/
description: 'Arduino command-line interface';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/arduino.github.io/arduino-cli/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install arduino-cli';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['arduino-cli'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.2.2', '1.2.0', '1.1.1', '1.1.0', '1.0.4', '1.0.3', '1.0.2', '1.0.1', '1.0.0', '0.35.3', '0.35.2', '0.35.1', '0.35.0', '0.34.2', '0.34.1', '0.34.0', '0.33.1', '0.33.0', '0.32.3', '0.32.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type ArduinocliPackage = typeof arduinocliPackage