/** * **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.22` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/withered-magic/starpls` * @buildDependencies `github.com/bazelbuild/bazelisk` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomwitheredmagicstarpls * 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.22" (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/withered-magic/starpls'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/withered-magic/starpls'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/withered-magic/starpls -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/withered-magic/starpls'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['starpls']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['github.com/bazelbuild/bazelisk']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.22', '0.1.21']; aliases: readonly [] }; export type StarplsPackage = typeof starplsPackage