UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **starpls** - An LSP implementation for Starlark, the configuration language used by Bazel and Buck2. * * @domain `github.com/withered-magic/starpls` * @programs `starpls` * @version `0.1.21` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install starpls` * @name `starpls` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.starpls * // Or access via domain * const samePkg = pantry.githubcomwitheredmagicstarpls * console.log(pkg === samePkg) // true * console.log(pkg.name) // "starpls" * console.log(pkg.description) // "An LSP implementation for Starlark, the configu..." * console.log(pkg.programs) // ["starpls"] * console.log(pkg.versions[0]) // "0.1.21" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/withered-magic/starpls.md * @see https://ts-pkgx.netlify.app/usage */ export declare const starplsPackage: { /** * The display name of this package. */ name: 'starpls'; /** * The canonical domain name for this package. */ domain: 'github.com/withered-magic/starpls'; /** * Brief description of what this package does. */ description: 'An LSP implementation for Starlark, the configuration language used by Bazel and Buck2.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/withered-magic/starpls/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install starpls'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['starpls']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.21']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) starpls -- $SHELL -i'; launchpadInstallCommand: 'launchpad install starpls' }; export type StarplsPackage = typeof starplsPackage