/** * **v** - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io * * @domain `vlang.io` * @programs `v` * @version `0.4.12` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install vlang.io` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.vlangio * console.log(pkg.name) // "v" * console.log(pkg.description) // "Simple, fast, safe, compiled language for devel..." * console.log(pkg.programs) // ["v"] * console.log(pkg.versions[0]) // "0.4.12" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/vlang-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const vlangioPackage: { /** * The display name of this package. */ name: 'v'; /** * The canonical domain name for this package. */ domain: 'vlang.io'; /** * Brief description of what this package does. */ description: unknown; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/vlang.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/vlang/v'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install vlang.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +vlang.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install vlang.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['v']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.12', '0.4.11', '0.4.10', '0.4.9', '0.4.8', '0.4.7', '0.4.6', '0.4.5', '0.4.4', '0.4.3', '0.4.2', '0.4.1', '0.4.0', '0.3.5', '0.3.4', '0.3.3']; aliases: readonly [] }; export type VlangioPackage = typeof vlangioPackage