UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.18 kB
/** * **scw** - Command Line Interface for Scaleway * * @domain `scaleway.com` * @programs `scw` * @version `2.42.0` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install scw` * @name `scw` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.scw * // Or access via domain * const samePkg = pantry.scalewaycom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "scw" * console.log(pkg.description) // "Command Line Interface for Scaleway" * console.log(pkg.programs) // ["scw"] * console.log(pkg.versions[0]) // "2.42.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: 'scw'; /** * 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.42.0', '2.41.0', '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 []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) scw -- $SHELL -i'; launchpadInstallCommand: 'launchpad install scw' }; export type ScwPackage = typeof scwPackage