UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.58 kB
/** * **freetds.org** - Libraries to talk to Microsoft SQL Server and Sybase databases * * @domain `freetds.org` * @programs `bsqldb`, `bsqlodbc`, `datacopy`, `defncopy`, `fisql`, ... (+4 more) * @version `1.5.3` (32 versions available) * @versions From newest version to oldest. * * @install `launchpad install +freetds.org -- $SHELL -i` * @dependencies `openssl.org^1.1`, `unixodbc.org`, `kerberos.org`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.freetdsorg * console.log(pkg.name) // "freetds.org" * console.log(pkg.description) // "Libraries to talk to Microsoft SQL Server and S..." * console.log(pkg.programs) // ["bsqldb", "bsqlodbc", ...] * console.log(pkg.versions[0]) // "1.5.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/freetds-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const freetdsorgPackage: { /** * The display name of this package. */ name: 'freetds.org'; /** * The canonical domain name for this package. */ domain: 'freetds.org'; /** * Brief description of what this package does. */ description: 'Libraries to talk to Microsoft SQL Server and Sybase databases'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freetds.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 +freetds.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['bsqldb', 'bsqlodbc', 'datacopy', 'defncopy', 'fisql', 'freebcp', 'osql', 'tdspool', 'tsql']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'unixodbc.org', 'kerberos.org', 'gnu.org/readline']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.3', '1.5.2', '1.5.1', '1.4.27', '1.4.26', '1.4.24', '1.4.23', '1.4.22', '1.4.21', '1.4.20', '1.4.19', '1.4.17', '1.4.16', '1.4.15', '1.4.14', '1.4.13', '1.4.12', '1.4.11', '1.4.10', '1.4.9', '1.4.8', '1.4.7', '1.4.6', '1.4.5', '1.4.4', '1.4.3', '1.4.2', '1.4.1', '1.3.21', '1.3.20', '1.3.19', '1.3.18']; aliases: readonly [] }; export type FreetdsorgPackage = typeof freetdsorgPackage