ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.93 kB
TypeScript
/**
* **stable-diffusion-webui** - Stable Diffusion web UI
*
* @domain `github.com/AUTOMATIC1111/stable-diffusion-webui`
* @programs `stable-diffusion-webui`
* @version `1.10.1` (20 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install stable-diffusion-webui`
* @name `stable-diffusion-webui`
* @dependencies `python.org~3.10`, `tea.xyz^0 # our scripts use tea/cli`, `git-scm.org^2`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.stablediffusionwebui
* // Or access via domain
* const samePkg = pantry.githubcomautomatic1111stablediffusionwebui
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "stable-diffusion-webui"
* console.log(pkg.description) // "Stable Diffusion web UI"
* console.log(pkg.programs) // ["stable-diffusion-webui"]
* console.log(pkg.versions[0]) // "1.10.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/AUTOMATIC1111/stable-diffusion-webui.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const stablediffusionwebuiPackage: {
/**
* The display name of this package.
*/
name: 'stable-diffusion-webui';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/AUTOMATIC1111/stable-diffusion-webui';
/**
* Brief description of what this package does.
*/
description: 'Stable Diffusion web UI';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/AUTOMATIC1111/stable-diffusion-webui/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install stable-diffusion-webui';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['stable-diffusion-webui'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org~3.10', 'tea.xyz^0 # our scripts use tea/cli', 'git-scm.org^2'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.10.1', '1.10.0', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.0', '1.7.0', '1.6.0', '1.5.2', '1.5.1', '1.5.0', '1.4.0', '1.3.2', '1.3.1', '1.3.0', '1.2.1', '1.2.0', '1.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) stable-diffusion-webui -- $SHELL -i';
launchpadInstallCommand: 'launchpad install stable-diffusion-webui'
};
export type StablediffusionwebuiPackage = typeof stablediffusionwebuiPackage