/** * **scw** - Command Line Interface for Scaleway * * @domain `scaleway.com` * @programs `scw` * @version `2.47.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install scaleway.com` * @homepage https://www.scaleway.com/en/cli/ * @buildDependencies `go.dev@~1.24.6` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.scalewaycom * 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.47.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/scaleway-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const scalewaycomPackage: { /** * 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: 'https://www.scaleway.com/en/cli/'; githubUrl: 'https://github.com/scaleway/scaleway-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install scaleway.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +scaleway.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install scaleway.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['scw']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.24.6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.47.0', '2.46.0', '2.45.0', '2.44.0', '2.43.0', '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']; aliases: readonly [] }; export type ScalewaycomPackage = typeof scalewaycomPackage