/** * **tinygo** - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM. * * @domain `tinygo.org` * @programs `tinygo` * @version `0.39.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install tinygo.org` * @homepage https://tinygo.org * @dependencies `go.dev` * @buildDependencies `go.dev@^1.18`, `cmake.org@3`, `nodejs.org`, ... (+1 more) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tinygoorg * console.log(pkg.name) // "tinygo" * console.log(pkg.description) // "Go compiler for small places. Microcontrollers,..." * console.log(pkg.programs) // ["tinygo"] * console.log(pkg.versions[0]) // "0.39.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tinygo-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tinygoorgPackage: { /** * The display name of this package. */ name: 'tinygo'; /** * The canonical domain name for this package. */ domain: 'tinygo.org'; /** * Brief description of what this package does. */ description: 'Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tinygo.org/package.yml'; homepageUrl: 'https://tinygo.org'; githubUrl: 'https://github.com/tinygo-org/tinygo'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tinygo.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tinygo.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tinygo.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tinygo']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['go.dev']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18', 'cmake.org@3', 'nodejs.org', 'python.org@>=3.6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.39.0', '0.38.0', '0.37.0', '0.36.0', '0.35.0', '0.34.0', '0.33.0', '0.32.0', '0.31.2']; aliases: readonly [] }; export type TinygoorgPackage = typeof tinygoorgPackage