UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.14 kB
/** * **gql** - Very simple CLI for many GraphQL schemas in the cloud. Provides autocompletion for GraphQL queries * * @domain `graphqleditor.com/gql` * @programs `gql` * @version `0.1.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install gql` * @name `gql` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gql * // Or access via domain * const samePkg = pantry.graphqleditorcomgql * console.log(pkg === samePkg) // true * console.log(pkg.name) // "gql" * console.log(pkg.description) // "Very simple CLI for many GraphQL schemas in the..." * console.log(pkg.programs) // ["gql"] * console.log(pkg.versions[0]) // "0.1.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/graphqleditor-com/gql.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gqlPackage: { /** * The display name of this package. */ name: 'gql'; /** * The canonical domain name for this package. */ domain: 'graphqleditor.com/gql'; /** * Brief description of what this package does. */ description: 'Very simple CLI for many GraphQL schemas in the cloud. Provides autocompletion for GraphQL queries'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/graphqleditor.com/gql/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gql'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gql']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GqlPackage = typeof gqlPackage