UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **versitygw** - versity s3 gateway * * @domain `versity.com/versitygw` * @programs `versitygw` * @version `1.0.14` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install versitygw` * @name `versitygw` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.versitygw * // Or access via domain * const samePkg = pantry.versitycomversitygw * console.log(pkg === samePkg) // true * console.log(pkg.name) // "versitygw" * console.log(pkg.description) // "versity s3 gateway" * console.log(pkg.programs) // ["versitygw"] * console.log(pkg.versions[0]) // "1.0.14" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/versity-com/versitygw.md * @see https://ts-pkgx.netlify.app/usage */ export declare const versitygwPackage: { /** * The display name of this package. */ name: 'versitygw'; /** * The canonical domain name for this package. */ domain: 'versity.com/versitygw'; /** * Brief description of what this package does. */ description: 'versity s3 gateway'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/versity.com/versitygw/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install versitygw'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['versitygw']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.14', '1.0.13', '1.0.12', '1.0.11', '1.0.10', '1.0.9', '1.0.8', '1.0.7', '1.0.6', '1.0.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type VersitygwPackage = typeof versitygwPackage