ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.63 kB
TypeScript
/**
* **sqlite3** - Official Git mirror of the SQLite source tree
*
* @domain `sqlite.org`
* @programs `sqlite3`
* @version `3.50.4` (29 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sqlite3`
* @name `sqlite3`
* @dependencies `zlib.net@1`, `gnu.org/readline@8`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sqlite3
* // Or access via domain
* const samePkg = pantry.sqliteorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sqlite3"
* console.log(pkg.description) // "Official Git mirror of the SQLite source tree"
* console.log(pkg.programs) // ["sqlite3"]
* console.log(pkg.versions[0]) // "3.50.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sqlite-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sqlite3Package: {
/**
* The display name of this package.
*/
name: 'sqlite3';
/**
* The canonical domain name for this package.
*/
domain: 'sqlite.org';
/**
* Brief description of what this package does.
*/
description: 'Official Git mirror of the SQLite source tree';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sqlite.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 sqlite3';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sqlite3'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['zlib.net@1', 'gnu.org/readline@8'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.50.4', '3.50.3', '3.50.2', '3.50.1', '3.50.0', '3.49.2', '3.49.1', '3.49.0', '3.48.0', '3.47.2', '3.47.1', '3.47.0', '3.46.1', '3.46.0', '3.45.3', '3.45.2', '3.45.1', '3.45.0', '3.44.4', '3.44.3', '3.44.2', '3.44.1', '3.44.0', '3.43.2', '3.43.1', '3.43.0', '3.42.0', '3.40.0', '3.39.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sqlite3 -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sqlite3'
};
export type Sqlite3Package = typeof sqlite3Package