ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.51 kB
TypeScript
/**
* **wails** - Create beautiful applications using Go
*
* @domain `wails.io`
* @programs `wails`
* @version `2.10.1` (9 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install wails`
* @aliases `wails`
* @dependencies `go.dev^1.18`, `npmjs.com`, `linux:gnu.org/gcc`, ... (+2 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.wails
* // Or access via domain
* const samePkg = pantry.wailsio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "wails.io"
* console.log(pkg.description) // "Create beautiful applications using Go"
* console.log(pkg.programs) // ["wails"]
* console.log(pkg.versions[0]) // "2.10.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/wails-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const wailsPackage: {
/**
* The display name of this package.
*/
name: 'wails.io';
/**
* The canonical domain name for this package.
*/
domain: 'wails.io';
/**
* Brief description of what this package does.
*/
description: 'Create beautiful applications using Go';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wails.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install wails';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['wails'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['go.dev^1.18', 'npmjs.com', 'linux:gnu.org/gcc', 'linux:gtk.org/gtk3', 'linux:freedesktop.org/pkg-config'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.10.1', '2.10.0', '2.9.3', '2.9.2', '2.9.1', '2.9.0', '2.8.2', '2.8.1', '2.8.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['wails']
};
export type WailsPackage = typeof wailsPackage