UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.22 kB
/** * **goose** - A database migration tool. Supports SQL migrations and Go functions. * * @domain `pressly.github.io/goose` * @programs `goose` * @version `3.24.3` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install goose` * @name `goose` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.goose * // Or access via domain * const samePkg = pantry.presslygithubiogoose * console.log(pkg === samePkg) // true * console.log(pkg.name) // "goose" * console.log(pkg.description) // "A database migration tool. Supports SQL migrati..." * console.log(pkg.programs) // ["goose"] * console.log(pkg.versions[0]) // "3.24.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pressly-github-io/goose.md * @see https://ts-pkgx.netlify.app/usage */ export declare const goosePackage: { /** * The display name of this package. */ name: 'goose'; /** * The canonical domain name for this package. */ domain: 'pressly.github.io/goose'; /** * Brief description of what this package does. */ description: 'A database migration tool. Supports SQL migrations and Go functions.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pressly.github.io/goose/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install goose'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['goose']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.24.3', '3.24.2', '3.24.1', '3.24.0', '3.23.1', '3.23.0', '3.22.1', '3.22.0', '3.21.1', '3.21.0', '3.20.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GoosePackage = typeof goosePackage