UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.75 kB
/** * **GPT Engineer** - Platform to experiment with the AI Software Engineer. Terminal based. NOTE: Very different from https://gptengineer.app * * @domain `github.com/AntonOsika/gpt-engineer` * @programs `gpte`, `gpt-engineer` * @version `0.3.1` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install +github.com/AntonOsika/gpt-engineer -- $SHELL -i` * @aliases `GPT Engineer` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.GPTEngineer * // Or access via domain * const samePkg = pantry.githubcomantonosikagptengineer * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gpt-engineer" * console.log(pkg.description) // "Platform to experiment with the AI Software Eng..." * console.log(pkg.programs) // ["gpte", "gpt-engineer"] * console.log(pkg.versions[0]) // "0.3.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/AntonOsika/gpt-engineer.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gPTEngineerPackage: { /** * The display name of this package. */ name: 'gpt-engineer'; /** * The canonical domain name for this package. */ domain: 'github.com/AntonOsika/gpt-engineer'; /** * Brief description of what this package does. */ description: 'Platform to experiment with the AI Software Engineer. Terminal based. NOTE: Very different from https://gptengineer.app'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/AntonOsika/gpt-engineer/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +github.com/AntonOsika/gpt-engineer -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gpte', 'gpt-engineer']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.1', '0.3.0', '0.2.9', '0.2.7', '0.2.5', '0.2.4', '0.2.3', '0.2.1', '0.0.9', '0.0.8', '0.0.7', '0.0.6', '0.0.5', '0.0.4', '0.0.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['GPT Engineer'] }; export type GPTEngineerPackage = typeof gPTEngineerPackage