UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **scw** - Command Line Interface for Scaleway * * @domain `scaleway.com` * @programs `scw` * @version `2.40.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install scw` * @aliases `scw` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.scw * // Or access via domain * const samePkg = pantry.scalewaycom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "scaleway.com" * console.log(pkg.description) // "Command Line Interface for Scaleway" * console.log(pkg.programs) // ["scw"] * console.log(pkg.versions[0]) // "2.40.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scaleway-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const scwPackage: { /** * The display name of this package. */ name: 'scaleway.com'; /** * The canonical domain name for this package. */ domain: 'scaleway.com'; /** * Brief description of what this package does. */ description: 'Command Line Interface for Scaleway'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/scaleway.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install scw'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scw']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.40.0', '2.39.0', '2.38.0', '2.37.0', '2.36.0', '2.35.0', '2.34.0', '2.33.0', '2.32.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['scw'] }; export type ScwPackage = typeof scwPackage