ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.09 kB
TypeScript
/**
* **sqlc** - Generate type-safe code from SQL
*
* @domain `sqlc.dev`
* @programs `sqlc`
* @version `1.29.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sqlc`
* @name `sqlc`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sqlc
* // Or access via domain
* const samePkg = pantry.sqlcdev
* console.log(pkg === samePkg) // true
* 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.29.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sqlc-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sqlcPackage: {
/**
* 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: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sqlc';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sqlc'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.29.0', '1.28.0', '1.27.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sqlc -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sqlc'
};
export type SqlcPackage = typeof sqlcPackage