ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.06 kB
TypeScript
/**
* **mods** - AI on the command line
*
* @domain `charm.sh/mods`
* @programs `mods`
* @version `1.7.0` (15 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install mods`
* @name `mods`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.mods
* // Or access via domain
* const samePkg = pantry.charmshmods
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "mods"
* console.log(pkg.description) // "AI on the command line"
* console.log(pkg.programs) // ["mods"]
* console.log(pkg.versions[0]) // "1.7.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/charm-sh/mods.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const modsPackage: {
/**
* The display name of this package.
*/
name: 'mods';
/**
* The canonical domain name for this package.
*/
domain: 'charm.sh/mods';
/**
* Brief description of what this package does.
*/
description: 'AI on the command line';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/charm.sh/mods/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install mods';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['mods'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.7.0', '1.6.0', '1.5.0', '1.4.1', '1.4.0', '1.3.1', '1.3.0', '1.2.2', '1.2.1', '1.2.0', '1.1.0', '1.0.0', '0.2.0', '0.1.1', '0.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type ModsPackage = typeof modsPackage