UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

46 lines 1.1 kB
/** * **glm.g-truc.net** - pkgx package * * @domain `glm.g-truc.net` * * @install `launchpad install glm.g-truc.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.glmgtrucnet * console.log(pkg.name) // "glm.g-truc.net" * ``` * * @see https://ts-pkgx.netlify.app/packages/glm-g-truc-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const glmgtrucnetPackage: { /** * The display name of this package. */ name: 'glm.g-truc.net'; /** * The canonical domain name for this package. */ domain: 'glm.g-truc.net'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: ''; homepageUrl: ''; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install glm.g-truc.net'; programs: readonly []; companions: readonly []; dependencies: readonly []; versions: readonly []; aliases: readonly [] }; export type GlmgtrucnetPackage = typeof glmgtrucnetPackage