ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.56 kB
TypeScript
/**
* **metagpt** - 🌟 The Multi-Agent Framework: First AI Software Company, Towards Natural Language Programming
*
* @domain `deepwisdom.ai`
* @programs `metagpt`
* @version `0.8.2` (16 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install metagpt`
* @aliases `metagpt`, `MetaGPT`
* @dependencies `pkgx.sh^1`, `git-scm.org^2 # v0.7.0 requires it`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.metagpt
* // Or access via domain
* const samePkg = pantry.deepwisdomai
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "deepwisdom.ai"
* console.log(pkg.description) // "🌟 The Multi-Agent Framework: First AI Software..."
* console.log(pkg.programs) // ["metagpt"]
* console.log(pkg.versions[0]) // "0.8.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/deepwisdom-ai.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const metagptPackage: {
/**
* The display name of this package.
*/
name: 'deepwisdom.ai';
/**
* The canonical domain name for this package.
*/
domain: 'deepwisdom.ai';
/**
* Brief description of what this package does.
*/
description: '🌟 The Multi-Agent Framework: First AI Software Company, Towards Natural Language Programming';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/deepwisdom.ai/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install metagpt';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['metagpt'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1', 'git-scm.org^2 # v0.7.0 requires it'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.8.2', '0.8.1', '0.8.0', '0.7.7', '0.7.6', '0.7.4', '0.7.3', '0.7.2', '0.7.1', '0.7.0', '0.6.6', '0.6.4', '0.6.3', '0.6.2', '0.6.0', '0.5.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['metagpt', 'MetaGPT']
};
export type MetagptPackage = typeof metagptPackage