UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.51 kB
/** * **chatblade** - A CLI Swiss Army Knife for ChatGPT * * @domain `github.com/npiv/chatblade` * @programs `chatblade` * @version `0.7.0` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install chatblade` * @name `chatblade` * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.chatblade * // Or access via domain * const samePkg = pantry.githubcomnpivchatblade * console.log(pkg === samePkg) // true * console.log(pkg.name) // "chatblade" * console.log(pkg.description) // "A CLI Swiss Army Knife for ChatGPT" * console.log(pkg.programs) // ["chatblade"] * console.log(pkg.versions[0]) // "0.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/npiv/chatblade.md * @see https://ts-pkgx.netlify.app/usage */ export declare const chatbladePackage: { /** * The display name of this package. */ name: 'chatblade'; /** * The canonical domain name for this package. */ domain: 'github.com/npiv/chatblade'; /** * Brief description of what this package does. */ description: 'A CLI Swiss Army Knife for ChatGPT'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/npiv/chatblade/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install chatblade'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['chatblade']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3<3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.0', '0.6.4', '0.6.3', '0.6.2', '0.5.0', '0.4.0', '0.3.4', '0.3.3', '0.3.1', '0.3.0', '0.2.3', '0.2.2', '0.2.1', '0.2.0', '0.1.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) chatblade -- $SHELL -i'; launchpadInstallCommand: 'launchpad install chatblade' }; export type ChatbladePackage = typeof chatbladePackage