/** * **amber** - Crystal web framework. Bare metal performance, productivity and happiness * * @domain `amber-lang.com` * @programs `amber` * @version `0.5.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install amber-lang.com` * @homepage https://amberframework.org/ * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.amberlangcom * console.log(pkg.name) // "amber" * console.log(pkg.description) // "Crystal web framework. Bare metal performance, ..." * console.log(pkg.programs) // ["amber"] * console.log(pkg.versions[0]) // "0.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/amber-lang-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const amberlangcomPackage: { /** * The display name of this package. */ name: 'amber'; /** * The canonical domain name for this package. */ domain: 'amber-lang.com'; /** * Brief description of what this package does. */ description: 'Crystal web framework. Bare metal performance, productivity and happiness'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/amber-lang.com/package.yml'; homepageUrl: 'https://amberframework.org/'; githubUrl: 'https://github.com/Ph0enixKM/Amber'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install amber-lang.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +amber-lang.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install amber-lang.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['amber']; 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.5.1', '0.5.0', '0.4.0', '0.3.5', '0.3.4', '0.3.3', '0.3.2', '0.3.1']; aliases: readonly [] }; export type AmberlangcomPackage = typeof amberlangcomPackage