/** * **tea-package-builder** - Tea Package Builder is a tool that helps create packages for Tea.xyz quickly and conveniently * * @domain `github.com/ArionThinker/tea-package-builder` * @programs `tea-package-builder` * @version `0.1.6` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/ArionThinker/tea-package-builder` * @dependencies `linux:ffmpeg.org`, `linux:gnome.org/gobject-introspection`, `linux:gnome.org/glib^2` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `nodejs.org@>=14`, `npmjs.com` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomarionthinkerteapackagebuilder * console.log(pkg.name) // "tea-package-builder" * console.log(pkg.description) // "Tea Package Builder is a tool that helps create..." * console.log(pkg.programs) // ["tea-package-builder"] * console.log(pkg.versions[0]) // "0.1.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ArionThinker/tea-package-builder.md * @see https://ts-pkgx.netlify.app/usage */ export declare const teapackagebuilderPackage: { /** * The display name of this package. */ name: 'tea-package-builder'; /** * The canonical domain name for this package. */ domain: 'github.com/ArionThinker/tea-package-builder'; /** * Brief description of what this package does. */ description: 'Tea Package Builder is a tool that helps create packages for Tea.xyz quickly and conveniently'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ArionThinker/tea-package-builder/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ArionThinker/tea-package-builder'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/ArionThinker/tea-package-builder'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/ArionThinker/tea-package-builder -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/ArionThinker/tea-package-builder'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tea-package-builder']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:ffmpeg.org', 'linux:gnome.org/gobject-introspection', 'linux:gnome.org/glib^2']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['nodejs.org@>=14', 'npmjs.com']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.6', '0.1.5', '0.1.4', '0.1.3', '0.1.2', '0.1.1']; aliases: readonly [] }; export type TeapackagebuilderPackage = typeof teapackagebuilderPackage