/** * **sqlc** - Generate type-safe code from SQL * * @domain `sqlc.dev` * @programs `sqlc` * @version `1.30.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install sqlc.dev` * @homepage https://sqlc.dev/ * @buildDependencies `go.dev@^1.22` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.sqlcdev * console.log(pkg.name) // "sqlc" * console.log(pkg.description) // "Generate type-safe code from SQL" * console.log(pkg.programs) // ["sqlc"] * console.log(pkg.versions[0]) // "1.30.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/sqlc-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const sqlcdevPackage: { /** * The display name of this package. */ name: 'sqlc'; /** * The canonical domain name for this package. */ domain: 'sqlc.dev'; /** * Brief description of what this package does. */ description: 'Generate type-safe code from SQL'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sqlc.dev/package.yml'; homepageUrl: 'https://sqlc.dev/'; githubUrl: 'https://github.com/sqlc-dev/sqlc'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install sqlc.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +sqlc.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install sqlc.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['sqlc']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.22']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.30.0', '1.29.0', '1.28.0', '1.27.0']; aliases: readonly [] }; export type SqlcdevPackage = typeof sqlcdevPackage