UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

82 lines 3.08 kB
/** * **eliza** - Autonomous agents for everyone * * @domain `elizaOS.github.io` * @programs `eliza` * @version `1.4.3` (51 versions available) * @versions From newest version to oldest. * * @install `launchpad install eliza` * @name `elizaOS` * @aliases `eliza` * @dependencies `python.org>=2.7`, `nodejs.org~23.3`, `pnpm.io`, ... (+1 more) * @companions `git-scm.org`, `ffmpeg.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.eliza * // Or access via domain * const samePkg = pantry.elizaosgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "elizaOS" * console.log(pkg.description) // "Autonomous agents for everyone" * console.log(pkg.programs) // ["eliza"] * console.log(pkg.versions[0]) // "1.4.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/elizaOS-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const elizaPackage: { /** * The display name of this package. */ name: 'elizaOS'; /** * The canonical domain name for this package. */ domain: 'elizaOS.github.io'; /** * Brief description of what this package does. */ description: 'Autonomous agents for everyone'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/elizaOS.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/elizaOS/eliza'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install eliza'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eliza']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['git-scm.org', 'ffmpeg.org']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=2.7', 'nodejs.org~23.3', 'pnpm.io', 'bun.sh^1.2 # since 1.0.5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.3', '1.4.2', '1.4.1', '1.3.6', '1.3.4', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.12', '1.2.10', '1.2.9', '1.2.8', '1.2.7', '1.2.6', '1.2.5', '1.2.4', '1.2.3', '1.2.2', '1.2.1', '1.2.0', '1.1.8', '1.1.6', '1.1.5', '1.1.4', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.20', '1.0.19', '1.0.18', '1.0.17', '1.0.16', '1.0.15', '1.0.14', '1.0.13', '1.0.12', '1.0.11', '1.0.10', '1.0.9', '1.0.8', '1.0.7', '1.0.6', '1.0.5', '0.25.19', '0.25.9', '0.25.8', '0.1.9', '0.1.8.1', '0.1.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['eliza']; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) eliza -- $SHELL -i'; launchpadInstallCommand: 'launchpad install eliza' }; export type ElizaPackage = typeof elizaPackage