UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.28 kB
/** * **dblab** - The database client every command line junkie deserves. * * @domain `dblab.danvergara.com` * @programs `dblab` * @version `0.33.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install dblab` * @aliases `dblab` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.dblab * // Or access via domain * const samePkg = pantry.dblabdanvergaracom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dblab.danvergara.com" * console.log(pkg.description) // "The database client every command line junkie d..." * console.log(pkg.programs) // ["dblab"] * console.log(pkg.versions[0]) // "0.33.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dblab-danvergara-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dblabPackage: { /** * The display name of this package. */ name: 'dblab.danvergara.com'; /** * The canonical domain name for this package. */ domain: 'dblab.danvergara.com'; /** * Brief description of what this package does. */ description: 'The database client every command line junkie deserves.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dblab.danvergara.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 dblab'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dblab']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.33.0', '0.32.0', '0.31.0', '0.30.1', '0.30.0', '0.29.0', '0.28.1', '0.28.0', '0.27.0', '0.26.0', '0.25.0', '0.24.1', '0.24.0', '0.23.0', '0.22.0', '0.21.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['dblab'] }; export type DblabPackage = typeof dblabPackage