/** * **synth** - The Declarative Data Generator * * @domain `getsynth.com` * @programs `synth` * @version `0.6.9` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install getsynth.com` * @homepage https://www.getsynth.com/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.getsynthcom * console.log(pkg.name) // "synth" * console.log(pkg.description) // "The Declarative Data Generator" * console.log(pkg.programs) // ["synth"] * console.log(pkg.versions[0]) // "0.6.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/getsynth-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const getsynthcomPackage: { /** * The display name of this package. */ name: 'synth'; /** * The canonical domain name for this package. */ domain: 'getsynth.com'; /** * Brief description of what this package does. */ description: 'The Declarative Data Generator'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/getsynth.com/package.yml'; homepageUrl: 'https://www.getsynth.com/'; githubUrl: 'https://github.com/shuttle-hq/synth'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install getsynth.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +getsynth.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install getsynth.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['synth']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.9']; aliases: readonly [] }; export type GetsynthcomPackage = typeof getsynthcomPackage