UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.56 kB
/** * **ia** - Python wrapper for the various Internet Archive APIs * * @domain `github.com/jjjake/internetarchive` * @programs `ia` * @version `5.5.0` (13 versions available) * @versions From newest version to oldest. * * @install `launchpad install ia` * @name `ia` * @dependencies `python.org~3.11`, `gnu.org/which^2 # our stubs use which` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ia * // Or access via domain * const samePkg = pantry.githubcomjjjakeinternetarchive * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ia" * console.log(pkg.description) // "Python wrapper for the various Internet Archive..." * console.log(pkg.programs) // ["ia"] * console.log(pkg.versions[0]) // "5.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jjjake/internetarchive.md * @see https://ts-pkgx.netlify.app/usage */ export declare const iaPackage: { /** * The display name of this package. */ name: 'ia'; /** * The canonical domain name for this package. */ domain: 'github.com/jjjake/internetarchive'; /** * Brief description of what this package does. */ description: 'Python wrapper for the various Internet Archive APIs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jjjake/internetarchive/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ia'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ia']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11', 'gnu.org/which^2 # our stubs use which']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.5.0', '5.4.1', '5.4.0', '5.3.0', '5.2.1', '5.1.0', '5.0.5', '5.0.3', '5.0.0', '4.1.0', '4.0.1', '3.7.0', '3.4.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) ia -- $SHELL -i'; launchpadInstallCommand: 'launchpad install ia' }; export type IaPackage = typeof iaPackage