UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **edgedb** - The EdgeDB CLI * * @domain `edgedb.com` * @programs `edgedb` * @version `7.7.0` (38 versions available) * @versions From newest version to oldest. * * @install `launchpad install edgedb` * @name `edgedb` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.edgedb * // Or access via domain * const samePkg = pantry.edgedbcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "edgedb" * console.log(pkg.description) // "The EdgeDB CLI" * console.log(pkg.programs) // ["edgedb"] * console.log(pkg.versions[0]) // "7.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/edgedb-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const edgedbPackage: { /** * The display name of this package. */ name: 'edgedb'; /** * The canonical domain name for this package. */ domain: 'edgedb.com'; /** * Brief description of what this package does. */ description: 'The EdgeDB CLI'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/edgedb.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 edgedb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['edgedb']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['7.7.0', '7.6.0', '7.5.1', '7.5.0', '7.4.0', '7.3.0', '7.2.0', '7.1.1', '7.1.0', '7.0.3', '7.0.2', '7.0.1', '7.0.0', '6.1.2', '6.1.1', '6.1.0', '6.0.3', '6.0.2', '6.0.1', '6.0.0', '5.5.2', '5.5.1', '5.5.0', '5.4.1', '5.4.0', '5.3.0', '5.2.3', '5.2.2', '5.2.1', '5.2.0', '5.1.0', '5.0.0', '4.1.1', '4.1.0', '4.0.2', '4.0.1', '4.0.0', '3.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) edgedb -- $SHELL -i'; launchpadInstallCommand: 'launchpad install edgedb' }; export type EdgedbPackage = typeof edgedbPackage