UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.55 kB
/** * **litecli** - CLI for SQLite Databases with auto-completion and syntax highlighting * * @domain `litecli.com` * @programs `litecli` * @version `1.16.0` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install litecli` * @name `litecli` * @dependencies `pkgx.sh^1`, `sqlite.org^3.45` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.litecli * // Or access via domain * const samePkg = pantry.liteclicom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "litecli" * console.log(pkg.description) // "CLI for SQLite Databases with auto-completion a..." * console.log(pkg.programs) // ["litecli"] * console.log(pkg.versions[0]) // "1.16.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/litecli-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const litecliPackage: { /** * The display name of this package. */ name: 'litecli'; /** * The canonical domain name for this package. */ domain: 'litecli.com'; /** * Brief description of what this package does. */ description: 'CLI for SQLite Databases with auto-completion and syntax highlighting'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/litecli.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install litecli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['litecli']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1', 'sqlite.org^3.45']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.16.0', '1.15.0', '1.14.4', '1.14.3', '1.14.2', '1.14.1', '1.14.0', '1.13.2', '1.13.0', '1.12.4', '1.12.3', '1.12.2', '1.11.1', '1.11.0', '1.10.1', '1.10.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) litecli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install litecli' }; export type LitecliPackage = typeof litecliPackage