UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **pio** - Your Gateway to Embedded Software Development Excellence :alien: * * @domain `github.com/siiptuo/pio` * @programs `pio` * @version `0.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install pio` * @name `pio` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pio * // Or access via domain * const samePkg = pantry.githubcomsiiptuopio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "pio" * console.log(pkg.description) // "Your Gateway to Embedded Software Development E..." * console.log(pkg.programs) // ["pio"] * console.log(pkg.versions[0]) // "0.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/siiptuo/pio.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pioPackage: { /** * The display name of this package. */ name: 'pio'; /** * The canonical domain name for this package. */ domain: 'github.com/siiptuo/pio'; /** * Brief description of what this package does. */ description: 'Your Gateway to Embedded Software Development Excellence :alien:'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/siiptuo/pio/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pio'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pio']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type PioPackage = typeof pioPackage