/** * **replibyte** - Seed your development database with real data ⚡️ * * @domain `replibyte.com` * @programs `replibyte` * @version `0.10.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install replibyte.com` * @homepage https://www.replibyte.com * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.replibytecom * console.log(pkg.name) // "replibyte" * console.log(pkg.description) // "Seed your development database with real data ⚡️" * console.log(pkg.programs) // ["replibyte"] * console.log(pkg.versions[0]) // "0.10.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/replibyte-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const replibytecomPackage: { /** * The display name of this package. */ name: 'replibyte'; /** * The canonical domain name for this package. */ domain: 'replibyte.com'; /** * Brief description of what this package does. */ description: 'Seed your development database with real data ⚡️'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/replibyte.com/package.yml'; homepageUrl: 'https://www.replibyte.com'; githubUrl: 'https://github.com/Qovery/Replibyte'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install replibyte.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +replibyte.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install replibyte.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['replibyte']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.10.0']; aliases: readonly [] }; export type ReplibytecomPackage = typeof replibytecomPackage