UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.63 kB
/** * **postgrest** - Serves a fully RESTful API from any existing PostgreSQL database * * @domain `postgrest.org` * @programs `postgrest` * @version `13.0.4` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install postgrest` * @aliases `postgrest` * @dependencies `postgresql.org/libpq@17`, `zlib.net~1.3`, `gnu.org/gcc/libstdcxx@14`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.postgrest * // Or access via domain * const samePkg = pantry.postgrestorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "postgrest.org" * console.log(pkg.description) // "Serves a fully RESTful API from any existing Po..." * console.log(pkg.programs) // ["postgrest"] * console.log(pkg.versions[0]) // "13.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/postgrest-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const postgrestPackage: { /** * The display name of this package. */ name: 'postgrest.org'; /** * The canonical domain name for this package. */ domain: 'postgrest.org'; /** * Brief description of what this package does. */ description: 'Serves a fully RESTful API from any existing PostgreSQL database'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/postgrest.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install postgrest'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['postgrest']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['postgresql.org/libpq@17', 'zlib.net~1.3', 'gnu.org/gcc/libstdcxx@14', 'gnome.org/libxml2~2.13 # 2.14 changes library api version']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['13.0.4', '13.0.3', '13.0.2', '13.0.1', '13.0.0', '12.2.12', '12.2.11', '12.2.10', '12.2.9', '12.2.8', '12.2.7', '12.2.6', '12.2.5', '12.2.4', '12.2.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['postgrest'] }; export type PostgrestPackage = typeof postgrestPackage