UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.46 kB
/** * **gqlgen** - go generate based graphql server library * * @domain `gqlgen.com` * @programs `gqlgen` * @version `0.17.75` (39 versions available) * @versions From newest version to oldest. * * @install `launchpad install gqlgen` * @aliases `gqlgen` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.gqlgen * // Or access via domain * const samePkg = pantry.gqlgencom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gqlgen.com" * console.log(pkg.description) // "go generate based graphql server library" * console.log(pkg.programs) // ["gqlgen"] * console.log(pkg.versions[0]) // "0.17.75" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gqlgen-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gqlgenPackage: { /** * The display name of this package. */ name: 'gqlgen.com'; /** * The canonical domain name for this package. */ domain: 'gqlgen.com'; /** * Brief description of what this package does. */ description: 'go generate based graphql server library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gqlgen.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gqlgen'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gqlgen']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.17.75', '0.17.74', '0.17.73', '0.17.72', '0.17.71', '0.17.70', '0.17.69', '0.17.68', '0.17.67', '0.17.66', '0.17.65', '0.17.64', '0.17.63', '0.17.62', '0.17.61', '0.17.60', '0.17.59', '0.17.58', '0.17.57', '0.17.56', '0.17.55', '0.17.54', '0.17.53', '0.17.52', '0.17.51', '0.17.50', '0.17.49', '0.17.48', '0.17.47', '0.17.46', '0.17.45', '0.17.44', '0.17.43', '0.17.42', '0.17.41', '0.17.40', '0.17.39', '0.17.38', '0.17.37']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['gqlgen'] }; export type GqlgenPackage = typeof gqlgenPackage