[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\nindent_style = space\nindent_size = 4\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace=true\nmax_line_length = 120\ncharset = utf-8\n\n[*.yaml]\nindent_size = 2\n\n[*.md]\ntrim_trailing_whitespace=false\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "### Describe your changes\n<!-- Short description of what has been changed and/or added and why -->\n\n### Issue ticket number and link\n<!-- Leave empty if not available -->\n\n### Evidence on requirement fulfillment (new packages only)\n<!-- A link to evidence that the requirement for the package are fulfilled. -->\n<!-- see https://github.com/mason-org/mason-registry/blob/main/CONTRIBUTING.md#requirements -->\n\n### Checklist before requesting a review\n<!-- Refer to the CONTRIBUTING.md for details on testing -->\n- [ ] If the package is available at nvim-lspconfig, I also added the respective name to `neovim.lspconfig`.\n- [ ] I have successfully tested installation of the package.\n- [ ] I have successfully tested the package after installation.\n      <!-- For example: successfully starting the LSP server inside Neovim, or successfully integrated linting\n      diagnostics -->\n\n### Screenshots\n<!-- Leave empty if not applicable -->\n"
  },
  {
    "path": ".github/workflows/actionlint.yaml",
    "content": "---\nname: Actionlint\n\non:\n  - pull_request\n\njobs:\n  validate:\n    name: Actionlint\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: reviewdog/action-actionlint@v1\n"
  },
  {
    "path": ".github/workflows/package-tests.yaml",
    "content": "---\nname: Package tests\n\non:\n  pull_request:\n  workflow_dispatch:\n    inputs:\n      packages:\n        type: string\n        description: Space-separated list of package definitions to test.\n        required: true\n\njobs:\n  lint:\n    name: Registry lint\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          fetch-depth: 1\n      - uses: mason-org/actions/registry-lint@v1\n        with:\n          packages: ${{ github.event.inputs.packages }}\n\n  test:\n    name: Package tests\n    needs: lint\n    uses: mason-org/actions/.github/workflows/package-tests.yaml@v1\n    with:\n      packages: ${{ github.event.inputs.packages }}\n      skip: ${{ github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:skip-package-tests') }}\n"
  },
  {
    "path": ".github/workflows/release.yaml",
    "content": "---\nname: Release\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  release:\n    name: Release\n    runs-on: ubuntu-latest\n    permissions:\n      contents: write\n    steps:\n      - uses: mason-org/actions/registry-release@v1\n"
  },
  {
    "path": ".github/workflows/stale-bot.yml",
    "content": "name: Stale bot\non:\n  schedule:\n    - cron: \"18 04 * * 3\"\n\npermissions:\n  issues: write\n  pull-requests: write\n\njobs:\n  stale:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Close stale issues/PRs\n        uses: actions/stale@v9\n        with:\n          repo-token: ${{ secrets.GITHUB_TOKEN }}\n\n          # DOCS https://github.com/actions/stale#all-options\n          days-before-stale: 90\n          days-before-close: 7\n\n          stale-issue-label: Stale\n          stale-issue-message: |\n            This issue has been automatically marked as stale.\n            If this issue is still relevant, please leave any comment, and it will be kept open.\n          close-issue-message: |\n            This issue has been closed due to inactivity, and will not be monitored.\n\n          stale-PR-label: Stale\n          stale-pr-message: |\n            This PR has been automatically marked as stale. \n            If this issue is still relevant, please leave any comment, and it will be kept open.\n          close-pr-message: |\n            This PR has been closed due to inactivity, and will not be monitored.\n"
  },
  {
    "path": ".github/workflows/validate-renovate.yaml",
    "content": "---\nname: Validate Renovate config\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n\njobs:\n  validate:\n    name: Validate renovate config\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Check for config changes\n        id: diff\n        uses: tj-actions/changed-files@v46\n        with:\n          files: |\n            renovate.json5\n\n      - shell: bash\n        if: ${{ steps.diff.outputs.any_changed == 'true' }}\n        run: |\n          set +o pipefail\n          npx -y -p renovate -c renovate-config-validator \\\n            | tee /dev/stderr \\\n            | grep -Evz '(ERROR|could not be parsed)'\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing guide\n\n## Table of Contents\n\n<!--toc:start-->\n- [Contributing guide](#contributing-guide)\n  - [Table of Contents](#table-of-contents)\n- [Requirements](#requirements)\n- [Introduction](#introduction)\n- [Schema](#schema)\n- [Testing](#testing)\n- [The anatomy of a package](#the-anatomy-of-a-package)\n- [Package specification](#package-specification)\n  - [`name`](#name)\n  - [`description`](#description)\n  - [`homepage`](#homepage)\n  - [`licenses`](#licenses)\n  - [`languages`](#languages)\n  - [`categories`](#categories)\n  - [`deprecation`](#deprecation)\n  - [`source`](#source)\n  - [`bin`](#bin)\n  - [`share`](#share)\n  - [`opt`](#opt)\n  - [`neovim`](#neovim)\n    - [`lspconfig`](#lspconfig)\n- [Expressions](#expressions)\n- [Examples](#examples)\n  - [Common fields](#common-fields)\n  - [Cargo](#cargo)\n  - [Composer](#composer)\n  - [Gem](#gem)\n  - [GitHub release assets](#github-release-assets)\n  - [GitHub build from source](#github-build-from-source)\n  - [Golang](#golang)\n  - [LuaRocks](#luarocks)\n  - [npm](#npm)\n  - [Nuget](#nuget)\n  - [opam](#opam)\n  - [PyPI](#pypi)\n  - [Open VSX](#open-vsx)\n<!--toc:end-->\n\n> The key words \"MUST\", \"MUST NOT\", \"REQUIRED\", \"SHALL\", \"SHALL NOT\", \"SHOULD\", \"SHOULD NOT\", \"RECOMMENDED\", \"NOT\n> RECOMMENDED\", \"MAY\", and \"OPTIONAL\" in this document are to be interpreted as described in [BCP 14][bcp14],\n> [RFC2119][rfc2119], and [RFC8174][rfc8174] when, and only when, they appear in all capitals, as shown here.\n\n# Requirements\nAt least one of the following conditions MUST be fulfilled for new packages to be added to the registry.\n\n1. At least 100 stars on GitHub.\n1. At least 5000 VSCode marketplace downloads.\n1. Be approved at [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig).\n1. The tool is officially recommended by a reputable consortium, foundation, or company.\n\nEven if one, or all, of the previous conditions are fulfilled, new package additions may be rejected for other \nreasons.\n\n# Introduction\n\n* Make sure to follow the [naming guidelines](#name).\n* Refer to the [common fields example](#common-fields) for a good starting point for a new package.\n* Refer to the different [examples](#examples) and/or existing package definitions for further guidance.\n* Testing a package MUST be done locally prior to creating a PR. See [testing](#testing) for more information.\n\n> [!TIP]\n> Use the [YAML language server](https://mason-registry.dev/registry/list#yaml-language-server) to get diagnostics and autocompletion (see [Schema](#schema)).\n\n# Schema\n\nPackage definitions are validated against a well-defined [JSON schema](https://github.com/mason-org/registry-schema).\nThe full schema is hosted on <http://schemastore.org/>.\n\n> [!TIP]\n> Use the [YAML language server](https://mason-registry.dev/registry/list#yaml-language-server) to integrate these\n> schemas in Neovim. This gives you diagnostics and autocompletion inside the editor when editing package definitions:\n> \n> <img src=\"https://user-images.githubusercontent.com/6705160/230375252-40dfcd78-dcd3-43c4-8967-c7452384b818.png\" height=\"100\" />\n\n# Testing\n\nTesting a package locally can be achieved by configuring the `mason.nvim` client to source package definitions locally\nfrom your filesystem.\n\n> [!IMPORTANT]\n> In order for `mason.nvim` to be able to parse the YAML files you must have `yq` installed on your system. Tip: install\n> `yq` (`:MasonInstall yq`) from the core registry before testing.\n\nTake note of the path where you have `mason-org/mason-registry` cloned on your file system. To configure `mason.nvim` to\nsource packages from there you'll use the `file:` protocol, like so:\n\n```lua\nrequire(\"mason\").setup {\n  registries = {\n    \"file:~/dev/mason-registry\"\n  }\n}\n```\n\nBefore continuing, make sure Mason has been properly configured to source packages locally by opening the `:Mason`\nwindow and pressing `g?` to open the help view:\n\n<img src=\"https://github.com/mason-org/mason-registry/assets/6705160/952e1b0f-6396-492e-9270-e72c26800a98\" height=\"100\" />\n\n> [!TIP]\n> You can emulate different platforms (\"targets\") by providing the `--target=` option to `:MasonInstall`. For example:\n> <pre><code>:MasonInstall --target=linux_arm64 my-package</code></pre>  \n> Note that this is only a soft emulation and only impacts how the package definition is parsed.\n\n# The anatomy of a package\n\nPackages are defined following a [well-defined specification](#package-specification). Package definitions are hosted as\nseparate YAML files that MUST be located at `packages/<package-name>/package.yaml`.\n\nPackage sources are identified via a [purl][purl] identifier. Each package source (purl) MUST contain a version\ncomponent specifying the latest available version, e.g `pkg:github/rust-lang/rust-analyzer@2023-04-04`.\n\nPackage versions are automatically kept up-to-date via [Renovate][renovate].\n\n# Package specification\n\nThe following is a rough outline of the package definition schema:\n\n```yaml\nname: string\ndescription: string\nhomepage: URL\nlicenses: SPDXLicense[]\nlanguages: string[]\ncategories: Category[]\n\nsource:\n    id: string\n    [key: string]: any\n\nbin?:\n    [executable: string]: string\nshare?:\n    [share_location: string]: string\nopt?:\n    [opt_location: string]: string\n```\n\n## `name`\n\nThe package name MUST be unique. The name of a package MUST follow the following naming scheme:\n\n1. If the upstream package name is sufficiently unambiguous, or otherwise widely recognized, that name MUST be used.\n1. If the upstream package provides a single executable with a name that is sufficiently unambiguous, or otherwise\n   widely recognized, the name of the executable MUST be used.\n1. If either the package or executable name is ambiguous, a name where a clarifying prefix or suffix is added SHOULD be\n   used.\n1. As a last resort, the name of the package should be constructed to best convey its target language and scope, e.g.\n   `json-language-server` for a JSON language server.\n\n## `description`\n\nShort description of the package. The description SHOULD be sourced from the upstream package directly.\n\nLonger descriptions MUST be split on multiple lines, as to not exceed the max line length (120).\n\nExample:\n\n```yaml\ndescription: |\n  Lorem ipsum dolor sit amet, officia excepteur ex fugiat reprehenderit enim labore culpa sint ad nisi Lorem pariatur\n  mollit ex esse exercitation amet. Nisi anim cupidatat excepteur officia.\n```\n\n> [!TIP]\n> To automatically format the description across multiple lines, run `:setlocal textwidth=120`, visually select the\n> description and press `gw` (`:help gw`).\n\n## `homepage`\n\nThe homepage of the package. The homepage SHOULD be a public website if available, otherwise it MUST be a URL to the\nsource code.\n\nThe URL MUST be a [well-formed URL][rfc1738]. The URL scheme MUST be either `http` or `https`.\n\n## `licenses`\n\nList of licenses associated with this package. MUST contain at least one entry.\n\nThe license MUST be a [SPDX-compatible](https://spdx.org/licenses/) license identifier. Should the package use a license\nnot available as a SPDX identifier, the license \"proprietary\" (all lower case) MUST be used.\n\nExamples:\n\n- `MIT`\n- `Apache-2.0`\n- `GPL-3.0-only`\n\n## `languages`\n\nThe languages the package targets. MAY be empty. A language is an arbitrary string (e.g., `\"Rust\"`). The casing of the\nstring MUST be the same as other references to the same language in other package definitions, i.e. it's an error if\npackage A specifies `Javascript` and package B specifies `JavaScript`.\n\n## `categories`\n\nThe categories the package belongs to. MAY be empty. If not empty, each entry MUST be one of:\n\n- `Compiler`\n- `DAP`\n- `Formatter`\n- `LSP`\n- `Linter`\n- `Runtime`\n\n## `deprecation`\n\nIf a package has been deprecated it SHOULD be marked as such through the `deprecation` field. Deprecated packages MAY be\nremoved from a registry and SHOULD be done no sooner than 3 months after the deprecation was first applied.\n\nThe `since` field MUST be formatted as a `full-date` per [RFC3339][rfc3339]. The `message` field MUST be included and\nSHOULD inform users of officially recommended replacements/alternatives if applicable.\n\nExamples:\n\n```yaml\ndeprecation:\n  since: \"2026-01-07\"\n  message: bash-language-server is no longer maintained.\n```\n\n## `source`\n\nThe source of the package. The `source` entry contains all necessary information to properly install the package. At the\nvery minimum it MUST contain an `id` property. The `id` property MUST be a [purl][purl]-compatible package identifier.\nThe purl identifier MUST contain a version component.\n\nThe source object MAY contain additional properties to support installation.\n\nExamples:\n\n```yaml\nsource:\n    id: pkg:npm/typescript-language-server@2.0.0\n```\n\n```yaml\nsource:\n    id: pkg:github/rust-lang/rust-analyzer@2022-12-05\n```\n\n## `bin`\n\nThe executables the package provides. The key is the canonical name of the executable, and the value is either (i) a\nrelative path to the executable from the package directory, or (ii) an expression that delegates path resolution (e.g.,\n`npm:typescript-language-server` or `cargo:rust-analyzer`), or (iii) an [expression](#expressions).\n\nOn Unix systems, a symlink is created. On Windows, a wrapper batch `.cmd` executable is always created.\n\nExample:\n\n```yaml\nbin:\n    typescript-language-server: npm:typescript-language-server\n    rust-analyzer: bin/rust-analyzer\n```\n\n## `share`\n\nThe architecture independent files the package provides.\n\nThe mapping MUST either (i) link a single target file to a single source file, or (ii) link a target directory to a\nsource directory, or (iii) an [expression](#expressions).\n\nThis creates symlinks (`uv_fs_symlink`) on all platforms.\n\nExample:\n\n```yaml\nshare:\n    # Links $MASON/share/jdtls/lombok.jar -> <package>/lombok.jar\n    jdtls/lombok.jar: lombok.jar\n    # Links $MASON/share/jdtls/plugins/ -> <package>/plugins/**/* (i.e. all files within the target directory)\n    jdtls/plugins/: plugins/\n```\n\n> [!IMPORTANT]\n> The contents of linked files MUST be compatible with all machines, regardless of hardware architecture.\n\n## `opt`\n\nThe optional, add-on, contents of a package. This is for example useful in situations when a package provides auxiliary\nbinaries that should not be linked to the \"global\" Mason `bin/` directory.\n\nThe mapping MUST either (i) link a single target file to a single source file, or (ii) link a target directory to a\nsource directory, or (iii) an [expression](#expressions).\n\nThis creates symlinks (`uv_fs_symlink`) on all platforms.\n\nExample:\n\n```yaml\nopt:\n    # Links $MASON/opt/solang/llvm15.0/LICENSE -> <package>/doc/LICENSE\n    solang/llvm15.0/LICENSE: doc/LICENSE\n    # Links $MASON/opt/solang/llvm15.0/ -> <package>/llvm15.0/**/* (i.e. all files within the target directory)\n    solang/llvm15.0/: llvm15.0/\n```\n\n## `neovim`\n\nThe `neovim` property is an object that contain metadata specific for Neovim.\n\n### `lspconfig`\n\nThe `lspconfig` property of `neovim` specifies the name of the LSP configuration as provided by\n[nvim-lspconfig](https://github.com/neovim/nvim-lspconfig/). Providing the `neovim.lspconfig` value MUST be done if the\npackage contains an LSP configuration entry in nvim-lspconfig.\n\nExample:\n\n```yaml\nneovim:\n    lspconfig: lua_ls\n```\n\n# Expressions\n\nWhen specified, a component of a package definition may include expressions. These expressions can only be used in\nstring values, and are denoted by `{{expr}}`. This allows for dynamically evaluating values, when needed.\n\nExample:\n\n```yaml\n# ...\nsource:\n    id: pkg:github/rust-lang/rust-analyzer@v1.0.0\n    asset:\n        - target: darwin_x64\n          file: rust-analyzer-darwin_x64_{{ version | strip_prefix \"v\" }}.tar.gz\n          bin: rust-analyzer-darwin_x64\n          some_other_bin: rust-fmt-darwin_x64\n        - target: linux_x64\n          file: rust-analyzer-linux_x64_{{ version | strip_prefix \"v\" }}.tar.gz\n          bin: rust-analyzer-linux_x64\n          some_other_bin: rust-fmt-linux_x64\n\nbin:\n    # This will be evaluated to either \"rust-analyzer-darwin_x64\" or \"rust-analyzer-linux_x64\", depending on which\n    # platform the package is being installed on.\n    rust-analyzer: \"{{source.asset.bin}}\"\n    rustfmt: \"{{source.asset.some_other_bin}}\"\n```\n\nExpressions use basic Lua syntax with the additional ability to pipe values to a limited set of transformation\nfunctions. All expressions are evaluated in a context, where values are accessed through normal variable access.\n\n# Examples\n\n## Common fields\n\nThe following fields are common for all packages and are subject to the same requirements.\n\nRefer to the following sections for a detailed description:\n\n- [`name`](#name)\n- [`description`](#description)\n- [`homepage`](#homepage)\n- [`licenses`](#licenses)\n- [`categories`](#categories)\n\nExample:\n\n```yaml\n---\nname: lua-language-server\ndescription: A language server that offers Lua language support - programmed in Lua.\nhomepage: https://github.com/LuaLS/lua-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - LSP\n```\n\n> [!IMPORTANT]\n> The document MUST start with a YAML header notation (`---`).\n\n---\n\n## Cargo\n\nExample:\n\n```yaml\nsource:\n  id: pkg:cargo/rnix-lsp@0.2.5\n\nbin:\n  rnix-lsp: cargo:rnix-lsp\n```\n\n<details><summary>Example: Specify features</summary>\n\nTo specify the features to install, use the `features` qualifier.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:cargo/flux-lsp@0.8.40?features=lsp,cli\n```\n\n</details>\n\n<details><summary>Example: Git source</summary>\n\nTo install a cargo package from a git source you may specify the `repository_url` qualifier. This will by default target\ntags in the provided git repository (i.e. `cargo install --tag <TAG>`). To target commits instead (i.e. `cargo install --rev\n<REV>`), provide an additional `&rev=true` qualifier.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:cargo/flux-lsp@0.8.40?repository_url=https://github.com/influxdata/flux-lsp\n```\n\n</details>\n\n<details><summary>Example: Specify supported platforms</summary>\n\nYou MUST provide the `supported_platforms` field if the package is only supported on certain platforms.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:cargo/flux-lsp@0.8.40\n  supported_platforms:\n    - linux_x64_gnu\n    - linux_arm64_gnu\n```\n\n</details>\n\n---\n\n## Composer\n\nExample:\n\n```yaml\nsource:\n  id: pkg:composer/vimeo/psalm@5.4.0\n\nbin:\n  psalm: composer:psalm\n  psalm-language-server: composer:psalm-language-server\n```\n\n---\n\n## Gem\n\nExample:\n\n```yaml\nsource:\n  id: pkg:gem/standard@1.26.0\n\nbin:\n  standardrb: gem:standardrb\n```\n\n<details><summary>Example: Specify supported platforms</summary>\n\nYou MUST provide the `supported_platforms` field if the package is only supported on certain platforms.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:gem/standard@1.26.0\n  supported_platforms:\n    - linux_x64_gnu\n    - linux_arm64_gnu\n```\n\n</details>\n\n---\n\n## GitHub release assets\n\nNote: Downloaded release assets are automatically unpacked (e.g. if it's a `.tar` file it's unpacked in its download\nlocation).\n\n<details><summary>Example: Platform dependent release assets</summary>\n\nWhen multiple, platform dependent, release assets are provided you MUST register an entry for each applicable platform.\nThis is done by providing a list of assets. The ordering of this list is important as clients may be target to more than\none platform and entries appearing first in the list have precedence.\n\nWhen this source is parsed by the client, the list is \"unwrapped\" to the very first entry whose `target` applies to the\ncurrent system.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/LuaLS/lua-language-server@3.6.18\n  asset:\n    - target: darwin_arm64\n      file: lua-language-server-{{version}}-darwin-arm64.tar.gz\n    - target: darwin_x64\n      file: lua-language-server-{{version}}-darwin-x64.tar.gz\n    - target: linux_arm64_gnu\n      file: lua-language-server-{{version}}-linux-arm64.tar.gz\n    - target: linux_x64_gnu\n      file: lua-language-server-{{version}}-linux-x64.tar.gz\n    - target: win_x86\n      file: lua-language-server-{{version}}-win32-ia32.zip\n    - target: win_x64\n      file: lua-language-server-{{version}}-win32-x64.zip\n```\n\nIt's common that platform-dependent assets contain different files and different folder structures. In order to\nfacilitate linking executables at a later stage you may provide additional, arbitrary, fields. The following example\nadds a `bin` field to each entry, which is later used in a [expression](#expression) to link the executable.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/LuaLS/lua-language-server@3.6.18\n  asset:\n    - target: darwin_arm64\n      file: lua-language-server-{{version}}-darwin-arm64.tar.gz\n      bin: lua-language-server\n    - target: win_x64\n      file: lua-language-server-{{version}}-win32-x64.zip\n      bin: lua-language-server.exe\n\nbin:\n  lua-language-server: \"{{source.asset.bin}}\"\n```\n\n</details>\n\n<details><summary>Example: Single, platform independent, release asset</summary>\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/Dart-Code/Dart-Code@v3.62.0\n  asset:\n    file: dart-code-{{ version | strip_prefix \"v\" }}.vsix\n```\n</details>\n\n<details><summary>Example: Downloading multiple assets</summary>\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/LuaLS/lua-language-server@3.6.18\n  asset:\n    file:\n      - lua-language-server-{{version}}\n      - lua-language-server-{{version}}.sha256\n      - LICENSE\n```\n</details>\n\n<details><summary>Example: Change asset download location</summary>\n\nBy default, assets are downloaded in the root directory of the package directory. You MAY change the download location\nby appending it to the file name itself with a `:` prefix.\n\nIf the download location ends with a `/` the file will be downloaded in that directory, otherwise it's a filename.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/lua/lua@5.1.0\n  asset:\n    file:\n      # download \"lua-language-server-{{version}}\" to \"bin/lua-language-server-{{version}}\"\n      - lua-language-server-{{version}}:bin/\n\n      # download \"lua-formatter-{{version}}\" to \"bin/lua-format\"\n      - lua-formatter-{{version}}:bin/lua-format\n\n      # download \"license\" to \"LICENSE.txt\"\n      - license:LICENSE.txt\n```\n</details>\n\n> [!IMPORTANT]\n> Linux binaries are commonly compiled for GNU systems. These binaries MUST be associated with a `_gnu` target, e.g.\n> `linux_x64_gnu`.\n\n---\n\n## GitHub build from source\n\nNote: Build scripts run on the platform's default shell. On Unix this is `bash`, on Windows it's `pwsh`.\n\nNote: By default, Renovate is configured to look for new releases for `pkg:github` sources. However, when building from\nsource, the repository most likely doesn't provide GitHub releases, but instead uses normal git tags. To ensure that\nRenovate picks up new versions, you MUST provide a datasource override via a comment (see example below).\n\nExample:\n\n```yaml\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/stoplightio/vscode-spectral@v1.1.2\n  build:\n    run: |\n      npm exec yarn@1 install\n      npm exec --package=yarn@1 'node make package'\n\nbin:\n  spectral-language-server: node:dist/server/index.js\n```\n\n<details><summary>Example: Platform-dependent build scripts</summary>\n\nSometimes the build script cannot be expressed in a shell-agnostic way. You MUST then provide a list of entries with the\nappropriate targets. The ordering of this list is important as clients may be target to more than one platform and\nentries appearing first in the list have precedence.\n\nWhen this source is parsed by the client, the list is \"unwrapped\" to the very first entry whose `target` applies to the\ncurrent system.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:github/vala-lang/vala-language-server@1.0.0\n  build:\n    - target: unix\n      run: |\n        meson -Dprefix=\"$PWD\" build\n        ninja -C build install\n    - target: win\n      run: |\n        meson -Dprefix=\"($pwd).path\" build\n        ninja -C build install\n```\n</details>\n\n---\n\n## Golang\n\nExample:\n\n```yaml\nsource:\n  id: pkg:golang/golang.org/x/tools/gopls@v0.11.0\n\nbin:\n  gopls: golang:gopls\n```\n\n<details><summary>Example: Specifying additional package path</summary>\n\nUse the subpath component to specify a sub-path of a golang package.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:golang/golang.org/x/tools@v0.7.0#cmd/goimports\n```\n</details>\n\n---\n\n## LuaRocks\n\nExample:\n\n```yaml\nsource:\n  id: pkg:luarocks/luacheck@1.1.0\n\nbin:\n  luacheck: luarocks:luacheck\n```\n\n<details><summary>Example: Specifying a server</summary>\n\nUse the `repository_url` qualifier to specify a different server (i.e. `luarocks install --server`).\n\nExample:\n\n```yaml\nsource:\n  id: pkg:luarocks/luaformatter@scm-1?repository_url=https://luarocks.org/dev\n```\n</details>\n\n<details><summary>Example: dev target</summary>\n\nUse the `dev` qualifier to specify a dev target (i.e. `luarocks install --dev`).\n\nExample:\n\n```yaml\nsource:\n  id: pkg:luarocks/teal-language-server@dev-1?dev=true\n```\n</details>\n\n---\n\n## npm\n\nExample:\n\n```yaml\nsource:\n  id: pkg:npm/typescript-language-server@3.3.1\n\nbin:\n  typescript-language-server: npm:typescript-language-server\n```\n\n<details><summary>Example: Additional npm dependencies</summary>\n\nSome packages may require additional npm dependencies to be installed in the same location. This can be achieved by\nproviding the `extra_packages` field.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:npm/typescript-language-server@3.3.1\n  extra_packages:\n    - typescript\n```\n\nPackages provided in `extra_packages` are passed as-is to npm, so they may require version constraints such as\n`typescript@4`.\n</details>\n\n---\n\n## Nuget\n\nExample:\n\n```yaml\nsource:\n  id: pkg:nuget/fsautocomplete@0.58.2\n\nbin:\n  fsautocomplete: nuget:fsautocomplete\n```\n\n---\n\n## opam\n\nExample:\n\n```yaml\nsource:\n  id: pkg:opam/ocaml-lsp-server@1.10.2\n\nbin:\n  ocamllsp: opam:ocamllsp\n```\n\n---\n\n## PyPI\n\nExample:\n\n```yaml\nsource:\n  id: pkg:pypi/yamllint@1.30.0\n\nbin:\n  yamllint: pypi:yamllint\n```\n\n<details><summary>Example: Adding extra specifiers</summary>\n\nTo add \"extra\" specifiers to a pypi package (i.e. `pip install python-lsp-server[all]`), use the `extra` qualifier.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:pypi/python-lsp-server@1.7.2?extra=all\n```\n</details>\n\n<details><summary>Example: Additional pypi dependencies</summary>\n\nSome packages may require additional pypi dependencies to be installed in the same location. This can be achieved by\nproviding the `extra_packages` field.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:pypi/yapf@0.32.0\n  extra_packages:\n    - toml\n```\n\nPackages provided in `extra_packages` are passed as-is, so they may require version constraints such as `toml==4`.\n</details>\n\n---\n\n## Open VSX\n\n[Open VSX](https://open-vsx.org/) is an open-source registry for VS Code extensions.\n\nExample:\n\n```yaml\nsource:\n  id: pkg:openvsx/vscjava/vscode-java-debug@0.55.0\n  download:\n    file: vscjava.vscode-java-debug-{{version}}.vsix\n```\n\n<details><summary>Example: Platform-dependent file</summary>\n\nIf the Open VSX package provides platform-dependent files they need to be registered explicitly. In addition to `target`\nand `file`, the `target_platform` field must be defined and correspond to an OpenVSX platform identifier (e.g.\n`linux-x64`).\n\n```yaml\nsource:\n  id: pkg:openvsx/BroadcomMFD/cobol-language-support@2.1.1\n  download:\n    - target: linux_x64\n      file: BroadcomMFD.cobol-language-support-{{ version }}@linux-x64.vsix\n      target_platform: linux-x64\n    - target: darwin_arm64\n      file: BroadcomMFD.cobol-language-support-{{ version }}@darwin-arm64.vsix\n      target_platform: darwin-arm64\n```\n\n</details>\n\n[bcp14]: https://tools.ietf.org/html/bcp14\n[purl]: https://github.com/package-url/purl-spec\n[renovate]: https://github.com/renovatebot/renovate\n[rfc1738]: https://www.rfc-editor.org/rfc/rfc1738\n[rfc2119]: https://tools.ietf.org/html/rfc2119\n[rfc3339]: https://tools.ietf.org/html/rfc3339\n[rfc8174]: https://tools.ietf.org/html/rfc8174\n"
  },
  {
    "path": "LICENSE",
    "content": "                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n"
  },
  {
    "path": "README.md",
    "content": "![Linux](https://img.shields.io/badge/Linux-%23.svg?style=flat-square&logo=linux&color=FCC624&logoColor=black)\n![macOS](https://img.shields.io/badge/macOS-%23.svg?style=flat-square&logo=apple&color=000000&logoColor=white)\n![Windows](https://img.shields.io/badge/Windows-%23.svg?style=flat-square&logo=windows&color=0078D6&logoColor=white)\n[![Package tests](https://img.shields.io/badge/CI-Package%20Tests-brightgreen?style=flat-square&logo=github)](https://github.com/mason-org/mason-registry/actions/workflows/package-tests.yaml)\n[![Sponsors](https://img.shields.io/github/sponsors/williamboman?style=flat-square)](https://github.com/sponsors/williamboman)\n\n![mason-registry](https://user-images.githubusercontent.com/6705160/230374582-25c9c26a-7885-4e1e-960d-3ec6880fbcb4.png)\n\n<p align=\"center\">\n    Core package registry for <a href=\"https://github.com/williamboman/mason.nvim\"><code>mason.nvim</code></a>.\n</p>\n\nRefer to [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution guidelines.\n\nCompiled registry contents are available via [releases](https://github.com/mason-org/mason-registry/releases).\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security policy\n\n## Reporting a Vulnerability\n\nPlease report any suspected security vulnerabilities [here][new-advisory]. If the issue is confirmed, we will release a\npatch as soon as possible depending on complexity. Please follow [responsible disclosure\npractices](https://en.wikipedia.org/wiki/Coordinated_vulnerability_disclosure). Thanks!\n\n[new-advisory]: https://github.com/mason-org/mason-registry/security/advisories/new\n"
  },
  {
    "path": "packages/actionlint/package.yaml",
    "content": "---\nname: actionlint\ndescription: Static checker for GitHub Actions workflow files.\nhomepage: https://github.com/rhysd/actionlint\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/rhysd/actionlint@v1.7.12\n  asset:\n    - target: darwin_x64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n      bin: actionlint\n    - target: darwin_arm64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: actionlint\n    - target: linux_x64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin: actionlint\n    - target: linux_arm64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: actionlint\n    - target: linux_arm\n      file: actionlint_{{ version | strip_prefix \"v\" }}_linux_armv6.tar.gz\n      bin: actionlint\n    - target: linux_x86\n      file: actionlint_{{ version | strip_prefix \"v\" }}_linux_386.tar.gz\n      bin: actionlint\n    - target: win_x64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: actionlint.exe\n    - target: win_arm64\n      file: actionlint_{{ version | strip_prefix \"v\" }}_windows_arm64.zip\n      bin: actionlint.exe\n    - target: win_x86\n      file: actionlint_{{ version | strip_prefix \"v\" }}_windows_386.zip\n      bin: actionlint.exe\n\nbin:\n  actionlint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/ada-language-server/package.yaml",
    "content": "---\nname: ada-language-server\ndescription: Ada/SPARK language server.\nhomepage: https://github.com/AdaCore/ada_language_server\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Ada\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/AdaCore/ada_language_server@2026.2.202604091\n  asset:\n    - target: darwin_x64\n      file: als-{{version}}-darwin-x64.tar.gz\n      bin: integration/vscode/ada/x64/darwin/ada_language_server\n    - target: darwin_arm64\n      file: als-{{version}}-darwin-arm64.tar.gz\n      bin: integration/vscode/ada/arm64/darwin/ada_language_server\n    - target: linux_arm64_gnu\n      file: als-{{version}}-linux-arm64.tar.gz\n      bin: integration/vscode/ada/arm64/linux/ada_language_server\n    - target: linux_x64_gnu\n      file: als-{{version}}-linux-x64.tar.gz\n      bin: integration/vscode/ada/x64/linux/ada_language_server\n    - target: win_x64\n      file: als-{{version}}-win32-x64.tar.gz\n      bin: integration/vscode/ada/x64/win32/ada_language_server.exe\n\n  version_overrides:\n    - constraint: semver:<=25.0.20241014\n      id: pkg:github/AdaCore/ada_language_server@25.0.20241014\n      asset:\n        - target: darwin_x64\n          file: x64-darwin.tar.gz\n          bin: integration/vscode/ada/x64/darwin/ada_language_server\n        - target: darwin_arm64\n          file: arm64-darwin.tar.gz\n          bin: integration/vscode/ada/arm64/darwin/ada_language_server\n        - target: linux_x64_gnu\n          file: x64-linux.tar.gz\n          bin: integration/vscode/ada/x64/linux/ada_language_server\n        - target: win_x64\n          file: x64-win32.tar.gz\n          bin: integration/vscode/ada/x64/win32/ada_language_server.exe\n\n    - constraint: semver:<=24.0.6\n      id: pkg:github/AdaCore/ada_language_server@24.0.6\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: als-{{version}}-macOS_amd64.zip\n          bin: x64/darwin/ada_language_server\n        - target: linux_x64_gnu\n          file: als-{{version}}-Linux_amd64.zip\n          bin: x64/linux/ada_language_server\n        - target: win_x64\n          file: als-{{version}}-Windows_amd64.zip\n          bin: x64/win32/ada_language_server.exe\n\n    - constraint: semver:<=23.0.19\n      id: pkg:github/AdaCore/ada_language_server@23.0.19\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: als-{{version}}-macOS_amd64.zip\n          bin: darwin/ada_language_server\n        - target: linux_x64_gnu\n          file: als-{{version}}-Linux_amd64.zip\n          bin: linux/ada_language_server\n        - target: win_x64\n          file: als-{{version}}-Windows_amd64.zip\n          bin: win32/ada_language_server.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/AdaCore/ada_language_server/{{version}}/integration/vscode/ada/package.json\n\nbin:\n  ada_language_server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: ada_language_server\n"
  },
  {
    "path": "packages/aiken/package.yaml",
    "content": "---\nname: aiken\ndescription: A modern smart contract platform for Cardano\nhomepage: https://github.com/aiken-lang/aiken\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Aiken\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/aiken-lang/aiken@v1.1.21\n  asset:\n    - target: darwin_x64\n      file: aiken-x86_64-apple-darwin.tar.gz\n      bin: aiken-x86_64-apple-darwin/aiken\n    - target: darwin_arm64\n      file: aiken-aarch64-apple-darwin.tar.gz\n      bin: aiken-aarch64-apple-darwin/aiken\n    - target: linux_x64\n      file: aiken-x86_64-unknown-linux-musl.tar.gz\n      bin: aiken-x86_64-unknown-linux-musl/aiken\n    - target: win_x64\n      file: aiken-x86_64-pc-windows-msvc.tar.gz\n      bin: aiken-x86_64-pc-windows-msvc/aiken.exe\n\nbin:\n  aiken: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/air/package.yaml",
    "content": "---\nname: air\ndescription: R formatter and language server\nhomepage: https://posit-dev.github.io/air/\nlicenses:\n  - MIT\nlanguages:\n  - R\ncategories:\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:github/posit-dev/air@0.9.0\n  asset:\n    - target: darwin_arm64\n      file: air-aarch64-apple-darwin.tar.gz\n      bin: air-aarch64-apple-darwin/air\n    - target: darwin_x64\n      file: air-x86_64-apple-darwin.tar.gz\n      bin: air-x86_64-apple-darwin/air\n    - target: linux_arm64_gnu\n      file: air-aarch64-unknown-linux-gnu.tar.gz\n      bin: air-aarch64-unknown-linux-gnu/air\n    - target: linux_x64_gnu\n      file: air-x86_64-unknown-linux-gnu.tar.gz\n      bin: air-x86_64-unknown-linux-gnu/air\n    - target: win_x86\n      file: air-aarch64-pc-windows-msvc.zip\n      bin: air.exe\n    - target: win_x64\n      file: air-x86_64-pc-windows-msvc.zip\n      bin: air.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/posit-dev/air/{{version}}/editors/code/package.json\n\n\nbin:\n  air: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: air\n"
  },
  {
    "path": "packages/alejandra/package.yaml",
    "content": "---\nname: alejandra\ndescription: The Uncompromising Nix Code Formatter\nhomepage: https://github.com/kamadorueda/alejandra\nlicenses:\n  - Unlicense\nlanguages:\n  - Nix\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:cargo/alejandra_cli@4.0.0?repository_url=https://github.com/kamadorueda/alejandra\nbin:\n  alejandra: cargo:alejandra\n"
  },
  {
    "path": "packages/alex/package.yaml",
    "content": "---\nname: alex\ndescription: Catch insensitive, inconsiderate writing.\nhomepage: https://github.com/get-alex/alex\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/alex@11.0.1\n\nbin:\n  alex: npm:alex\n"
  },
  {
    "path": "packages/amber-lsp/package.yaml",
    "content": "---\nname: amber-lsp\ndescription: Amber's Language Server Protocol\nhomepage: https://github.com/amber-lang/amber-lsp\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Amber\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/amber-lang/amber-lsp@v0.2.0\n  asset:\n    - target: darwin_arm64\n      file: amber-lsp-aarch64-apple-darwin.tar.gz\n      bin: amber-lsp-aarch64-apple-darwin/amber-lsp\n    - target: darwin_x64\n      file: amber-lsp-x86_64-apple-darwin.tar.gz\n      bin: amber-lsp-x86_64-apple-darwin/amber-lsp\n    - target: linux_x64_gnu\n      file: amber-lsp-x86_64-unknown-linux-gnu.tar.gz\n      bin: amber-lsp-x86_64-unknown-linux-gnu/amber-lsp\n    - target: linux_x64_musl\n      file: amber-lsp-x86_64-unknown-linux-musl.tar.gz\n      bin: amber-lsp-x86_64-unknown-linux-musl/amber-lsp\n    - target: win_x64\n      file: amber-lsp-x86_64-pc-windows-msvc.zip\n      bin: amber-lsp.exe\n\nbin:\n  amber-lsp: \"{{source.asset.bin}}\"\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/amber-lang/amber-lsp/{{version}}/clients/vscode/package.json\n"
  },
  {
    "path": "packages/angular-language-server/package.yaml",
    "content": "---\nname: angular-language-server\ndescription: |\n  The Angular Language Service provides code editors with a way to get completions, errors, hints, and navigation inside\n  Angular templates. It works with external templates in separate HTML files, and also with in-line templates.\nhomepage: https://angular.io/guide/language-service\nlicenses:\n  - MIT\nlanguages:\n  - Angular\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40angular/language-server@21.2.10\n  extra_packages:\n    - typescript@5.8.3\n\n  version_overrides:\n    - constraint: semver:<=19.2.4\n      id: pkg:npm/%40angular/language-server@19.2.4\n      extra_packages:\n        - typescript@5.8.3\n\n    - constraint: semver:<=18.2.0\n      id: pkg:npm/%40angular/language-server@18.2.0\n      extra_packages:\n        - typescript@5.4.5\n\n    - constraint: semver:<=17.3.2\n      id: pkg:npm/%40angular/language-server@17.3.2\n      extra_packages:\n        - typescript@5.3.2\n\n    - constraint: semver:<=16.2.0\n      id: pkg:npm/%40angular/language-server@16.2.0\n      extra_packages:\n        - typescript@5.1.3\n\n    - constraint: semver:<=15.2.1\n      id: pkg:npm/%40angular/language-server@15.2.1\n      extra_packages:\n        - typescript@4.8.2\n\n    - constraint: semver:<=14.2.0\n      id: pkg:npm/%40angular/language-server@14.2.0\n      extra_packages:\n        - typescript@4.8.2\n\n    - constraint: semver:<=13.3.4\n      id: pkg:npm/%40angular/language-server@13.3.4\n      extra_packages:\n        - typescript@4.6.2\n\n    - constraint: semver:<=12.2.3\n      id: pkg:npm/%40angular/language-server@12.2.3\n      extra_packages:\n        - typescript@4.3.4\n\n    - constraint: semver:<=11.2.14\n      id: pkg:npm/%40angular/language-server@11.2.14\n      extra_packages:\n        - typescript@4.1.5\n\nbin:\n  ngserver: npm:ngserver\n\nneovim:\n  lspconfig: angularls\n"
  },
  {
    "path": "packages/ansible-language-server/package.yaml",
    "content": "---\nname: ansible-language-server\ndescription: Ansible Language Server.\nhomepage: https://github.com/ansible/vscode-ansible\nlicenses:\n  - MIT\nlanguages:\n  - Ansible\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40ansible/ansible-language-server@26.4.4\n\nbin:\n  ansible-language-server: npm:ansible-language-server\n\nneovim:\n  lspconfig: ansiblels\n"
  },
  {
    "path": "packages/ansible-lint/package.yaml",
    "content": "---\nname: ansible-lint\ndescription:\n  Ansible Lint is a command-line tool for linting playbooks, roles and collections aimed toward any Ansible users.\nhomepage: https://github.com/ansible/ansible-lint\nlicenses:\n  - GPL-3.0-or-later\n  - MIT\nlanguages:\n  - Ansible\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/ansible-lint@26.4.0\n  supported_platforms:\n    - unix\n\nbin:\n  ansible-lint: pypi:ansible-lint\n"
  },
  {
    "path": "packages/antlers-language-server/package.yaml",
    "content": "---\nname: antlers-language-server\ndescription: |\n  Provides rich language features for Statamic's Antlers templating language, including code completions, syntax\n  highlighting, and more.\nhomepage: https://github.com/Stillat/vscode-antlers-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Antlers\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/antlers-language-server@1.3.14\n\nbin:\n  antlersls: npm:antlersls\n\nneovim:\n  lspconfig: antlersls\n"
  },
  {
    "path": "packages/apex-language-server/package.yaml",
    "content": "---\nname: apex-language-server\ndescription:\n  The Apex Language Server is an IDE-agnostic way for tools to access code-editing capabilities such as code completion,\n  go to definition, find all usage, and refactoring.\nhomepage: https://github.com/forcedotcom/salesforcedx-vscode\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Apex\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/forcedotcom/salesforcedx-vscode@v66.8.0\n  asset:\n    file: salesforcedx-vscode-apex-{{ version | strip_prefix \"v\" }}.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/forcedotcom/salesforcedx-vscode/{{version}}/packages/salesforcedx-vscode-apex/package.json\n\nshare:\n  apex-language-server/apex-jorje-lsp.jar: extension/dist/apex-jorje-lsp.jar\n\n# This server is not yet migrated to vim.lsp.config in nvim-lspconfig\n# neovim:\n#   lspconfig: apex_ls\n"
  },
  {
    "path": "packages/api-linter/package.yaml",
    "content": "---\nname: api-linter\ndescription: A linter for APIs defined in protocol buffers.\nhomepage: https://github.com/googleapis/api-linter\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Protobuf\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/github.com/googleapis/api-linter/v2@v2.3.1#cmd/api-linter\n\nbin:\n  api-linter: golang:api-linter\n"
  },
  {
    "path": "packages/arduino-language-server/package.yaml",
    "content": "---\nname: arduino-language-server\ndescription: An Arduino Language Server based on Clangd to Arduino code autocompletion.\nhomepage: https://github.com/arduino/arduino-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Arduino\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/arduino/arduino-language-server@0.7.7\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: arduino-language-server_{{version}}_macOS_64bit.tar.gz\n      bin: arduino-language-server\n    - target: linux_x64\n      file: arduino-language-server_{{version}}_Linux_64bit.tar.gz\n      bin: arduino-language-server\n    - target: linux_x86\n      file: arduino-language-server_{{version}}_Linux_32bit.tar.gz\n      bin: arduino-language-server\n    - target: linux_arm64\n      file: arduino-language-server_{{version}}_Linux_ARM64.tar.gz\n      bin: arduino-language-server\n    - target: win_x64\n      file: arduino-language-server_{{version}}_Windows_64bit.zip\n      bin: arduino-language-server.exe\n    - target: win_x86\n      file: arduino-language-server_{{version}}_Windows_32bit.zip\n      bin: arduino-language-server.exe\n\nbin:\n  arduino-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: arduino_language_server\n"
  },
  {
    "path": "packages/asm-lsp/package.yaml",
    "content": "---\nname: asm-lsp\ndescription: Language server for NASM/GAS/GO Assembly.\nhomepage: https://github.com/bergercookie/asm-lsp\nlicenses:\n  - BSD-2-Clause\nlanguages:\n  - Assembly\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/asm-lsp@0.10.1\n\nschemas:\n  lsp: https://raw.githubusercontent.com/bergercookie/asm-lsp/v{{version}}/asm-lsp_config_schema.json\n\nbin:\n  asm-lsp: cargo:asm-lsp\n\nneovim:\n  lspconfig: asm_lsp\n"
  },
  {
    "path": "packages/asmfmt/package.yaml",
    "content": "---\nname: asmfmt\ndescription: |\n  Go Assembler Formatter\n  This will format your assembler code in a similar way that gofmt formats your Go code.\nhomepage: https://github.com/klauspost/asmfmt\nlicenses:\n  - MIT\nlanguages:\n  - Assembly\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/klauspost/asmfmt@v1.3.2\n  asset:\n    - target: darwin_arm64\n      file: asmfmt-OSX_arm64_{{ version | strip_prefix \"v\" }}.tar.gz\n      bin: asmfmt\n    - target: darwin_x64\n      file: asmfmt-OSX_x86_64_{{ version | strip_prefix \"v\" }}.tar.gz\n      bin: asmfmt\n    - target: linux_arm64\n      file: asmfmt-Linux_arm64_{{ version | strip_prefix \"v\" }}.tar.gz\n      bin: asmfmt\n    - target: linux_x64\n      file: asmfmt-Linux_x86_64_{{ version | strip_prefix \"v\" }}.tar.gz\n      bin: asmfmt\n    - target: win_arm64\n      file: asmfmt-Windows_arm64_{{ version | strip_prefix \"v\" }}.zip\n      bin: asmfmt.exe\n    - target: win_x64\n      file: asmfmt-Windows_x86_64_{{ version | strip_prefix \"v\" }}.zip\n      bin: asmfmt.exe\n\nbin:\n  asmfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/ast-grep/package.yaml",
    "content": "---\nname: ast-grep\ndescription: A CLI tool for code structural search, lint and rewriting. Written in Rust.\nhomepage: https://github.com/ast-grep/ast-grep\nlicenses:\n  - MIT\nlanguages: # https://ast-grep.github.io/reference/languages.html\n  - C\n  - C++\n  - Rust\n  - Go\n  - Java\n  - Python\n  - C#\n  - JavaScript\n  - JSX\n  - TypeScript\n  - HTML\n  - CSS\n  - Kotlin\n  - Dart\n  - Lua\n\ncategories:\n  - Linter\n  - Formatter\n  - Runtime\n  - LSP\n\nsource:\n  id: pkg:github/ast-grep/ast-grep@0.42.1\n  asset:\n    - target: darwin_arm64\n      file: app-aarch64-apple-darwin.zip\n    - target: darwin_x64\n      file: app-x86_64-apple-darwin.zip\n    - target: linux_arm64_gnu\n      file: app-aarch64-unknown-linux-gnu.zip\n    - target: linux_x64_gnu\n      file: app-x86_64-unknown-linux-gnu.zip\n    - target: win_arm64\n      file: app-aarch64-pc-windows-msvc.zip\n      ext: .exe\n    - target: win_x64\n      file: app-x86_64-pc-windows-msvc.zip\n      ext: .exe\n    - target: win_x86\n      file: app-i686-pc-windows-msvc.zip\n      ext: .exe\n\nbin:\n  ast-grep: ast-grep{{source.asset.ext}}\n  sg: sg{{source.asset.ext}}\n\nneovim:\n  lspconfig: ast_grep\n"
  },
  {
    "path": "packages/astro-language-server/package.yaml",
    "content": "---\nname: astro-language-server\ndescription: The Astro language server, its structure is inspired by the Svelte Language Server.\nhomepage: https://github.com/withastro/language-tools\nlicenses:\n  - MIT\nlanguages:\n  - Astro\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40astrojs/language-server@2.16.6\n  extra_packages:\n    - typescript\n    - \"@astrojs/ts-plugin\"\n\nbin:\n  astro-ls: npm:astro-ls\n\nneovim:\n  lspconfig: astro\n"
  },
  {
    "path": "packages/autoflake/package.yaml",
    "content": "---\nname: autoflake\ndescription: autoflake removes unused imports and unused variables from Python code.\nhomepage: https://pypi.org/project/autoflake/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/autoflake@2.3.3\n\nbin:\n  autoflake: pypi:autoflake\n"
  },
  {
    "path": "packages/autohotkey_lsp/package.yaml",
    "content": "---\nname: autohotkey_lsp\ndescription: |\n  Autohotkey v2 Language Support using vscode-lsp.\nhomepage: https://github.com/thqby/vscode-autohotkey2-lsp\nlicenses:\n  - LGPL-3.0\nlanguages:\n  - AutoHotkey\ncategories:\n  - LSP\nsource:\n  id: pkg:github/thqby/vscode-autohotkey2-lsp@v3.0.5\n  asset:\n    file: vscode-autohotkey2-lsp-{{ version | strip_prefix \"v\" }}.vsix\nbin:\n  # lspconfig assumes there is a autohotkey_lsp bin.\n  autohotkey_lsp: node:extension/server/dist/server.js\nneovim:\n  lspconfig: autohotkey_lsp\n"
  },
  {
    "path": "packages/autopep8/package.yaml",
    "content": "---\nname: autopep8\ndescription: A tool that automatically formats Python code to conform to the PEP 8 style guide.\nhomepage: https://pypi.org/project/autopep8/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/autopep8@2.3.2\n\nbin:\n  autopep8: pypi:autopep8\n"
  },
  {
    "path": "packages/autotools-language-server/package.yaml",
    "content": "---\nname: autotools-language-server\ndescription: Autotools language server, support configure.ac, Makefile.am, Makefile.\nhomepage: https://github.com/Freed-Wu/autotools-language-server\nlicenses:\n  - GPL-3.0\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/autotools-language-server@0.0.23\n\nbin:\n  autotools-language-server: pypi:autotools-language-server\n\nneovim:\n  lspconfig: autotools_ls\n"
  },
  {
    "path": "packages/awk-language-server/package.yaml",
    "content": "---\nname: awk-language-server\ndescription: Language Server for AWK.\nhomepage: https://github.com/Beaglefoot/awk-language-server\nlicenses:\n  - MIT\nlanguages:\n  - AWK\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/awk-language-server@0.10.6\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/Beaglefoot/awk-language-server/server-{{version}}/client/package.json\n\nbin:\n  awk-language-server: npm:awk-language-server\n\nneovim:\n  lspconfig: awk_ls\n"
  },
  {
    "path": "packages/azure-pipelines-language-server/package.yaml",
    "content": "---\nname: azure-pipelines-language-server\ndescription: A language server for Azure Pipelines YAML.\nhomepage: https://github.com/microsoft/azure-pipelines-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Azure Pipelines\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/azure-pipelines-language-server@0.8.0\n\nbin:\n  azure-pipelines-language-server: node:node_modules/azure-pipelines-language-server/out/server.js\n\nneovim:\n  lspconfig: azure_pipelines_ls\n"
  },
  {
    "path": "packages/bacon/package.yaml",
    "content": "---\nname: bacon\ndescription: Bacon is a background rust code checker\nhomepage: https://github.com/Canop/bacon\nlicenses:\n  - AGPL-3.0-or-later\nlanguages:\n  - Rust\ncategories:\n  - Linter\n\nsource:\n  id: pkg:cargo/bacon@3.22.0\n\nbin:\n  bacon: cargo:bacon\n"
  },
  {
    "path": "packages/bacon-ls/package.yaml",
    "content": "---\nname: bacon-ls\ndescription: Rust diagnostic provider based on Bacon\nhomepage: https://github.com/crisidev/bacon-ls\nlicenses:\n  - MIT\nlanguages:\n  - Rust\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/bacon-ls@0.27.0\n\nbin:\n  bacon-ls: cargo:bacon-ls\n\nneovim:\n  lspconfig: bacon_ls\n"
  },
  {
    "path": "packages/bandit/package.yaml",
    "content": "---\nname: bandit\ndescription: Bandit, a security linter from PyCQA\nhomepage: https://pypi.org/project/bandit/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/bandit@1.9.4\n\nbin:\n  bandit: pypi:bandit\n"
  },
  {
    "path": "packages/basedpyright/package.yaml",
    "content": "---\nname: basedpyright\ndescription: Fork of the Pyright static type checker for Python, with extra Pylance features.\nhomepage: https://detachhead.github.io/basedpyright\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/basedpyright@1.39.3\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/DetachHead/basedpyright/v{{version}}/packages/vscode-pyright/package.json\n\nbin:\n  basedpyright: pypi:basedpyright\n  basedpyright-langserver: pypi:basedpyright-langserver\n\nneovim:\n  lspconfig: basedpyright\n"
  },
  {
    "path": "packages/bash-debug-adapter/package.yaml",
    "content": "---\nname: bash-debug-adapter\ndescription: Bash shell debugger, based on bashdb.\nhomepage: https://github.com/rogalmic/vscode-bash-debug\nlicenses:\n  - MIT\nlanguages:\n  - Bash\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/rogalmic/vscode-bash-debug@untagged-438733f35feb8659d939\n  asset:\n    file: bash-debug-0.3.9.vsix\n\nbin:\n  bash-debug-adapter: node:extension/out/bashDebug.js\n\nopt:\n  bashdb/: extension/bashdb_dir/\n"
  },
  {
    "path": "packages/bash-language-server/package.yaml",
    "content": "---\nname: bash-language-server\ndescription: A language server for Bash.\nhomepage: https://github.com/bash-lsp/bash-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Bash\n  - Csh\n  - Ksh\n  - Sh\n  - Zsh\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/bash-language-server@5.6.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bash-lsp/bash-language-server/server-{{version}}/vscode-client/package.json\n\nbin:\n  bash-language-server: npm:bash-language-server\n\nneovim:\n  lspconfig: bashls\n"
  },
  {
    "path": "packages/basics-language-server/package.yaml",
    "content": "---\nname: basics-language-server\ndescription: Buffer, path, and snippet completions\nhomepage: https://github.com/antonk52/basics-language-server\nlicenses:\n  - MIT\nlanguages: [] # all languages\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/basics-language-server@1.1.2\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/antonk52/basics-language-server/v{{version}}/package.json\n\nbin:\n  basics-language-server: npm:basics-language-server\n\nneovim:\n  lspconfig: basics_ls\n"
  },
  {
    "path": "packages/bazelrc-lsp/package.yaml",
    "content": "---\nname: bazelrc-lsp\ndescription: Language Server for `.bazelrc` configuration files\nhomepage: https://github.com/salesforce-misc/bazelrc-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - bazelrc\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/salesforce-misc/bazelrc-lsp@v0.2.6\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: bazelrc-lsp-macos\n    - target: linux_x64_gnu\n      file: bazelrc-lsp-ubuntu\n    - target: win_x64\n      file: bazelrc-lsp-windows.exe\n\nbin:\n  bazelrc-lsp: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: bazelrc_lsp\n"
  },
  {
    "path": "packages/beancount-language-server/package.yaml",
    "content": "---\nname: beancount-language-server\ndescription: A Language Server Protocol (LSP) for beancount files.\nhomepage: https://github.com/polarmutex/beancount-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Beancount\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/beancount-language-server@1.9.2?repository_url=https://github.com/polarmutex/beancount-language-server\n\nbin:\n  beancount-language-server: cargo:beancount-language-server\n\nneovim:\n  lspconfig: beancount\n"
  },
  {
    "path": "packages/beanhub-cli/package.yaml",
    "content": "---\nname: beanhub-cli\ndescription: A simple beancount formatter that keeps comments.\nhomepage: https://beanhub-cli-docs.beanhub.io/\nlicenses:\n  - MIT\nlanguages:\n  - Beancount\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/beanhub-cli@3.1.1\n\nbin:\n  bh: pypi:bh\n"
  },
  {
    "path": "packages/beautysh/package.yaml",
    "content": "---\nname: beautysh\ndescription: beautysh - A Bash beautifier for the masses.\nhomepage: https://github.com/lovesegfault/beautysh\nlicenses:\n  - MIT\nlanguages:\n  - Bash\n  - Csh\n  - Ksh\n  - Sh\n  - Zsh\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/beautysh@6.4.3\n\nbin:\n  beautysh: pypi:beautysh\n"
  },
  {
    "path": "packages/bibtex-tidy/package.yaml",
    "content": "---\nname: bibtex-tidy\ndescription: Cleaner and Formatter for BibTeX files\nhomepage: https://github.com/FlamingTempura/bibtex-tidy\nlicenses:\n  - MIT\nlanguages:\n  - LaTeX\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/bibtex-tidy@1.14.0\n\nbin:\n  bibtex-tidy: npm:bibtex-tidy\n"
  },
  {
    "path": "packages/bicep-lsp/package.yaml",
    "content": "---\nname: bicep-lsp\ndescription: Bicep is a declarative language for describing and deploying Azure resources\nhomepage: https://github.com/Azure/bicep\nlicenses:\n  - MIT\nlanguages:\n  - Bicep\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/Azure/bicep@v0.42.1\n  asset:\n    file: vscode-bicep.vsix\n\nbin:\n  bicep-lsp: dotnet:extension/bicepLanguageServer/Bicep.LangServer.dll\n\nneovim:\n  lspconfig: bicep\n"
  },
  {
    "path": "packages/biome/package.yaml",
    "content": "---\nname: biome\ndescription: Toolchain of the web. Successor to Rome.\nhomepage: https://biomejs.dev\nlicenses:\n  - MIT\nlanguages:\n  - JSON\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/@biomejs/biome@2.4.13\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/biomejs/biome-vscode/main/package.json\n\nbin:\n  biome: npm:biome\n\nneovim:\n  lspconfig: biome\n"
  },
  {
    "path": "packages/black/package.yaml",
    "content": "---\nname: black\ndescription: Black, the uncompromising Python code formatter.\nhomepage: https://pypi.org/project/black/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/black@26.3.1\n\nbin:\n  black: pypi:black\n"
  },
  {
    "path": "packages/blackd-client/package.yaml",
    "content": "---\nname: blackd-client\ndescription: Tiny HTTP client for the Black (blackd) Python code formatter.\nhomepage: https://github.com/disrupted/blackd-client\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/disrupted/blackd-client@v0.1.1\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: blackd-client_macos\n    - target: linux_x64_gnu\n      file: blackd-client_linux\n\nbin:\n  blackd-client: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/blade-formatter/package.yaml",
    "content": "---\nname: blade-formatter\ndescription: An opinionated blade template formatter for Laravel that respects readability.\nhomepage: https://github.com/shufo/blade-formatter\nlicenses:\n  - MIT\nlanguages:\n  - Blade\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/blade-formatter@1.44.4\n\nbin:\n  blade-formatter: npm:blade-formatter\n"
  },
  {
    "path": "packages/blue/package.yaml",
    "content": "---\nname: blue\ndescription: |\n  blue is a somewhat less uncompromising code formatter than black, the OG of Python formatters. We love the idea of\n  automatically formatting Python code, for the same reasons that inspired black, however we take issue with some of the\n  decisions black makes. Kudos to black for pioneering code formatting for Python, and for its excellent implementation.\nhomepage: https://blue.readthedocs.io/en/latest/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/blue@0.9.1\n\nbin:\n  blue: pypi:blue\n"
  },
  {
    "path": "packages/bqls/package.yaml",
    "content": "---\nname: bqls\ndescription: BigQuery language server\nhomepage: https://github.com/kitagry/bqls/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - SQL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/kitagry/bqls@v0.4.3\n  asset:\n    - target: darwin_arm64\n      file: bqls_darwin_arm64.zip\n      bin: bqls\n    - target: darwin_x64\n      file: bqls_darwin_amd64.zip\n      bin: bqls\n    - target: linux_x64\n      file: bqls_linux_amd64.zip\n      bin: bqls\n\nbin:\n  bqls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: bqls\n"
  },
  {
    "path": "packages/brighterscript/package.yaml",
    "content": "---\nname: brighterscript\ndescription: A superset of Roku's BrightScript language.\nhomepage: https://github.com/RokuCommunity/brighterscript\nlicenses:\n  - MIT\nlanguages:\n  - BrighterScript\ncategories:\n  - Compiler\n  - LSP\n\nsource:\n  id: pkg:npm/brighterscript@0.71.1\n\nbin:\n  bsc: npm:bsc\n\nneovim:\n  lspconfig: bright_script\n"
  },
  {
    "path": "packages/brighterscript-formatter/package.yaml",
    "content": "---\nname: brighterscript-formatter\ndescription: A code formatter for BrightScript and BrighterScript.\nhomepage: https://github.com/rokucommunity/brighterscript-formatter\nlicenses:\n  - MIT\nlanguages:\n  - BrighterScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/brighterscript-formatter@1.7.23\n\nbin:\n  bsfmt: npm:bsfmt\n"
  },
  {
    "path": "packages/brunette/package.yaml",
    "content": "---\nname: brunette\ndescription: A best practice Python code formatter\nhomepage: https://github.com/odwyersoftware/brunette\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/brunette@0.2.8\n\nbin:\n  brunette: pypi:brunette\n"
  },
  {
    "path": "packages/bsl-language-server/package.yaml",
    "content": "---\nname: bsl-language-server\ndescription: Implementation of Language Server Protocol for Language 1C (BSL).\nhomepage: https://1c-syntax.github.io/bsl-language-server\nlicenses:\n  - LGPL-3.0\nlanguages:\n  - 1С:Enterprise\n  - OneScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/1c-syntax/bsl-language-server@v0.29.0\n  asset:\n    file: bsl-language-server-{{ version | strip_prefix \"v\" }}-exec.jar\n\nbin:\n  bsl-language-server: java-jar:{{source.asset.file}}\n\nneovim:\n  lspconfig: bsl_ls\n"
  },
  {
    "path": "packages/bslint/package.yaml",
    "content": "---\nname: bslint\ndescription: A BrighterScript CLI tool to lint your code without compiling your project.\nhomepage: https://github.com/rokucommunity/bslint\nlicenses:\n  - MIT\nlanguages:\n  - BrighterScript\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/%40rokucommunity/bslint@0.8.41\n\nbin:\n  bslint: npm:bslint\n"
  },
  {
    "path": "packages/buf/package.yaml",
    "content": "---\nname: buf\ndescription: |\n  The Buf CLI is a one stop shop for your local Protocol Buffers needs. It comes with a linter that enforces good API\n  designs, a breaking change detector, a generator, a formatter that formats your Protobuf files in accordance with\n  industry standards. It also helps you manage your Protobuf assets on the Buf Schema Registry.\nhomepage: https://buf.build\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Protobuf\ncategories:\n  - Linter\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:github/bufbuild/buf@v1.68.4\n  asset:\n    - target: darwin_x64\n      file: buf-Darwin-x86_64\n    - target: darwin_arm64\n      file: buf-Darwin-arm64\n    - target: linux_x64\n      file: buf-Linux-x86_64\n    - target: linux_arm64\n      file: buf-Linux-aarch64\n    - target: win_x64\n      file: buf-Windows-x86_64.exe\n    - target: win_arm64\n      file: buf-Windows-arm64.exe\n\nbin:\n  buf: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: buf_ls\n"
  },
  {
    "path": "packages/buildifier/package.yaml",
    "content": "---\nname: buildifier\ndescription: buildifier is a tool for formatting and linting bazel BUILD, WORKSPACE, and .bzl files.\nhomepage: https://github.com/bazelbuild/buildtools\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Bazel\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:github/bazelbuild/buildtools@v8.5.1\n  asset:\n    - target: darwin_x64\n      file: buildifier-darwin-amd64\n    - target: darwin_arm64\n      file: buildifier-darwin-arm64\n    - target: linux_x64\n      file: buildifier-linux-amd64\n    - target: linux_arm64\n      file: buildifier-linux-arm64\n    - target: win_x64\n      file: buildifier-windows-amd64.exe\n\nbin:\n  buildifier: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/bzl/package.yaml",
    "content": "---\nname: bzl\ndescription: |\n  Autocompletion, hover documentation, and debugging for BUILD files. Get a huge productivity boost with rule,\n  attribute, and function definitions right in your IDE.\nhomepage: https://bzl.io/\ndeprecation:\n  since: \"2025-12-01\"\n  message: Servers offline and homepage no longer available. Use starpls instead.\n\nlicenses:\n  - proprietary\nlanguages:\n  - Starlark\ncategories:\n  - LSP\n  - DAP\n\nsource:\n  id: pkg:generic/bzl@v1.4.22\n  download:\n    - target: darwin_x64\n      files:\n        bzl: https://get.bzl.io/darwin_amd64/{{version}}/bzl\n      bin: bzl\n    - target: darwin_arm64\n      files:\n        bzl: https://get.bzl.io/darwin_arm64/{{version}}/bzl\n      bin: bzl\n    - target: linux_x64\n      files:\n        bzl: https://get.bzl.io/linux_amd64/{{version}}/bzl\n      bin: bzl\n    - target: win_x64\n      files:\n        bzl.exe: https://get.bzl.io/windows_amd64/{{version}}/bzl.exe\n      bin: bzl.exe\n\nbin:\n  bzl: \"{{source.download.bin}}\"\n\nneovim:\n  lspconfig: bzl\n\n# Package is no longer installable.\nci_skip: true\n"
  },
  {
    "path": "packages/c3-lsp/package.yaml",
    "content": "---\nname: c3-lsp\ndescription: |\n  c3-lsp is a language server for the c3 language, developed by pherrymason.\n  It provides IDE features to any LSP-compatible editor.\nhomepage: https://github.com/pherrymason/c3-lsp\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - C3\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/pherrymason/c3-lsp@v0.4.0\n  asset:\n    - target: linux_x64_gnu\n      file: c3lsp-linux-amd64.tar.gz\n      bin: server/bin/release/c3lsp\n    - target: darwin_arm64\n      file: c3lsp-darwin-arm64.zip\n      bin: server/bin/release/c3lsp\n    - target: win_x64\n      file: c3lsp-windows-amd64.zip\n      bin: server/bin/release/c3lsp.exe\n\nbin:\n  c3lsp: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/cairo-language-server/package.yaml",
    "content": "---\nname: cairo-language-server\ndescription: Starknet Cairo language server.\nhomepage: https://github.com/starkware-libs/cairo\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Cairo\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/cairo-language-server@2.15.0\n\nbin:\n  cairo-language-server: cargo:cairo-language-server\n\nneovim:\n  lspconfig: cairo_ls\n"
  },
  {
    "path": "packages/cbfmt/package.yaml",
    "content": "---\nname: cbfmt\ndescription: |\n  A tool to format codeblocks inside markdown and org documents. It iterates over all codeblocks, and formats them with\n  the tool(s) specified for the language of the block.\nhomepage: https://github.com/lukas-reineke/cbfmt\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/lukas-reineke/cbfmt@v0.2.0\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: cbfmt_macos-x86_64_{{version}}.tar.gz\n      bin: cbfmt_macos-x86_64_{{version}}/cbfmt\n    - target: linux_x64_gnu\n      file: cbfmt_linux-x86_64_{{version}}.tar.gz\n      bin: cbfmt_linux-x86_64_{{version}}/cbfmt\n    - target: linux_x64\n      file: cbfmt_linux-x86_64-musl_{{version}}.tar.gz\n      bin: cbfmt_linux-x86_64-musl_{{version}}/cbfmt\n    - target: win_x64\n      file: cbfmt_windows-x86_64-msvc_{{version}}.zip\n      bin: cbfmt_windows-x86_64-msvc_{{version}}/cbfmt.exe\n\nbin:\n  cbfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/cds-lsp/package.yaml",
    "content": "---\nname: cds-lsp\ndescription: Language server for CDS\nhomepage: https://cap.cloud.sap\nlicenses:\n  - proprietary\nlanguages:\n  - CDS\ncategories:\n  - LSP\n  - Formatter\nsource:\n  id: pkg:npm/%40sap/cds-lsp@9.9.0\n\nbin:\n  cds-lsp: npm:cds-lsp\n  format-cds: npm:format-cds\n\nneovim:\n  lspconfig: cds_lsp\n"
  },
  {
    "path": "packages/cfn-lint/package.yaml",
    "content": "---\nname: cfn-lint\ndescription: |\n  CloudFormation Linter. Validate AWS CloudFormation YAML/JSON templates against the AWS CloudFormation Resource\n  Specification and additional checks. Includes checking valid values for resource properties and best practices.\nhomepage: https://github.com/aws-cloudformation/cfn-lint\nlicenses:\n  - MIT-0\nlanguages:\n  - YAML\n  - JSON\n  - CloudFormation\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/cfn-lint@1.49.3\n\nbin:\n  cfn-lint: pypi:cfn-lint\n"
  },
  {
    "path": "packages/checkmake/package.yaml",
    "content": "---\nname: checkmake\ndescription: checkmake is an experimental tool for linting and checking Makefiles. It may not do what you want it to.\nhomepage: https://github.com/mrtazz/checkmake\nlicenses:\n  - MIT\nlanguages:\n  - Makefile\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/mrtazz/checkmake@v0.3.2\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file:\n        - checkmake-{{ version }}.darwin.amd64\n        - checkmake.1:man1/\n      bin: checkmake-{{ version }}.darwin.amd64\n    - target: linux_x64\n      file:\n        - checkmake-{{ version }}.linux.amd64\n        - checkmake.1:man1/\n      bin: checkmake-{{ version }}.linux.amd64\n    - target: win_arm64\n      file: checkmake-{{ version }}.windows.arm64.exe\n      bin: checkmake-{{ version }}.windows.arm64.exe\n    - target: win_x64\n      file: checkmake-{{ version }}.windows.amd64.exe\n      bin: checkmake-{{ version }}.windows.amd64.exe\n\nshare:\n  man/man1/: man1/\n\nbin:\n  checkmake: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/checkstyle/package.yaml",
    "content": "---\nname: checkstyle\ndescription: A tool for checking Java source code for adherence to a Code Standard or set of validation rules (best practices).\nhomepage: https://checkstyle.org/\nlicenses:\n  - LGPL-2.1+\nlanguages:\n  - Java\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/checkstyle/checkstyle@checkstyle-10.26.1\n  asset:\n    file: \"{{version}}-all.jar\"\n\nbin:\n  checkstyle: java-jar:{{version}}-all.jar\n"
  },
  {
    "path": "packages/circleci-yaml-language-server/package.yaml",
    "content": "---\nname: circleci-yaml-language-server\ndescription: Language server for CircleCI YAML configurations\nhomepage: https://github.com/CircleCI-Public/circleci-yaml-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/CircleCI-Public/circleci-yaml-language-server@0.31.0\n  asset:\n    - target: darwin_arm64\n      file:\n        - darwin-arm64-lsp\n        - schema.json\n      bin: darwin-arm64-lsp\n    - target: darwin_x64\n      file:\n        - darwin-amd64-lsp\n        - schema.json\n      bin: darwin-amd64-lsp\n    - target: linux_arm64_gnu\n      file:\n        - linux-arm64-lsp\n        - schema.json\n      bin: linux-arm64-lsp\n    - target: linux_x64_gnu\n      file:\n        - linux-amd64-lsp\n        - schema.json\n      bin: linux-amd64-lsp\n    - target: win_x64\n      file:\n        - windows-amd64-lsp.exe\n        - schema.json\n      bin: windows-amd64-lsp.exe\n\nbin:\n  circleci-yaml-language-server: \"{{source.asset.bin}}\"\n\nshare:\n  circleci-yaml-language-server/schema.json: schema.json\n"
  },
  {
    "path": "packages/circom-lsp/package.yaml",
    "content": "---\nname: circom-lsp\ndescription: A Language Server Protocol Implementation for Circom\nhomepage: https://github.com/rubydusa/circom-lsp\nlicenses:\n  - GPL-3.0\n\nlanguages:\n  - Circom\n\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/circom-lsp@0.1.3\n\nbin:\n  circom-lsp: cargo:circom-lsp\n"
  },
  {
    "path": "packages/clang-format/package.yaml",
    "content": "---\nname: clang-format\ndescription: clang-format is formatter for C/C++/Java/JavaScript/JSON/Objective-C/Protobuf/C# code.\nhomepage: https://pypi.org/project/clang-format/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - C\n  - C#\n  - C++\n  - JSON\n  - Java\n  - JavaScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/clang-format@22.1.4\n\nbin:\n  clang-format: pypi:clang-format\n  clang-format-diff.py: pypi:clang-format-diff{{ take_if_not(is_platform(\"win\"), \".py\") }}\n  git-clang-format: pypi:git-clang-format\n"
  },
  {
    "path": "packages/clangd/package.yaml",
    "content": "---\nname: clangd\ndescription: |\n  clangd understands your C++ code and adds smart features to your editor: code completion, compile errors,\n  go-to-definition and more.\nhomepage: https://clangd.llvm.org\nlicenses:\n  - Apache-2.0\nlanguages:\n  - C\n  - C++\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/clangd/clangd@22.1.0\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: clangd-mac-{{version}}.zip\n      bin: clangd_{{version}}/bin/clangd\n    - target: linux_x64_gnu\n      file: clangd-linux-{{version}}.zip\n      bin: clangd_{{version}}/bin/clangd\n    - target: win_x64\n      file: clangd-windows-{{version}}.zip\n      bin: clangd_{{version}}/bin/clangd.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/clangd/vscode-clangd/master/package.json\n\nbin:\n  clangd: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: clangd\n"
  },
  {
    "path": "packages/clarinet/package.yaml",
    "content": "---\nname: clarinet\ndescription: |\n  Clarinet is a simple, modern and opinionated runtime for testing, integrating and deploying Clarity smart contracts.\nhomepage: https://github.com/hirosystems/clarinet\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Clarity\ncategories:\n  - LSP\n  - Runtime\n\nsource:\n  id: pkg:github/hirosystems/clarinet@v15.16.0\n  asset:\n    - target: darwin_arm64\n      file: clarinet-darwin-arm64.tar.gz\n      bin: clarinet\n    - target: darwin_x64\n      file: clarinet-darwin-x64.tar.gz\n      bin: clarinet\n    - target: linux_x64\n      file: clarinet-linux-x64-glibc.tar.gz\n      bin: clarinet\n\nbin:\n  clarinet: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/clj-kondo/package.yaml",
    "content": "---\nname: clj-kondo\ndescription: |\n  Clj-kondo performs static analysis on Clojure, ClojureScript and EDN, without the need of a running REPL. It informs\n  you about potential errors while you are typing.\nhomepage: https://github.com/clj-kondo/clj-kondo\nlicenses:\n  - EPL-1.0\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - Linter\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/clj-kondo/clj-kondo@v2026.04.15\n  asset:\n    - target: darwin_arm64\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-macos-aarch64.zip\n      bin: clj-kondo\n    - target: darwin_x64\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-macos-amd64.zip\n      bin: clj-kondo\n    - target: linux_arm64\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-linux-aarch64.zip\n      bin: clj-kondo\n    - target: linux_x64_gnu\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-linux-amd64.zip\n      bin: clj-kondo\n    - target: linux_x64\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-linux-static-amd64.zip\n      bin: clj-kondo\n    - target: win_x64\n      file: clj-kondo-{{ version | strip_prefix \"v\" }}-windows-amd64.zip\n      bin: clj-kondo.exe\n\nbin:\n  clj-kondo: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/cljfmt/package.yaml",
    "content": "---\nname: cljfmt\ndescription: A tool for formatting Clojure code\nhomepage: https://github.com/weavejester/cljfmt\nlicenses:\n  - EPL-1.0\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/weavejester/cljfmt@0.16.4\n  asset:\n    - target: darwin_arm64\n      file: cljfmt-{{ version }}-darwin-aarch64.tar.gz\n      bin: cljfmt\n    - target: linux_arm64_gnu\n      file: cljfmt-{{ version }}-linux-aarch64.tar.gz\n      bin: cljfmt\n    - target: linux_x64\n      file: cljfmt-{{ version }}-linux-amd64-static.tar.gz\n      bin: cljfmt\n    - target: win_x64\n      file: cljfmt-{{ version }}-win-amd64.zip\n      bin: cljfmt.exe\n\nbin:\n  cljfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/clojure-lsp/package.yaml",
    "content": "---\nname: clojure-lsp\ndescription: A Language Server for Clojure(script). Taking a Cursive-like approach of statically analyzing code.\nhomepage: https://clojure-lsp.io\nlicenses:\n  - MIT\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/clojure-lsp/clojure-lsp@2026.02.20-16.08.58\n  asset:\n    - target: darwin_arm64\n      file: clojure-lsp-native-macos-aarch64.zip\n      bin: clojure-lsp\n    - target: darwin_x64\n      file: clojure-lsp-native-macos-amd64.zip\n      bin: clojure-lsp\n    - target: linux_x64_gnu\n      file: clojure-lsp-native-linux-amd64.zip\n      bin: clojure-lsp\n    - target: linux_x64\n      file: clojure-lsp-native-static-linux-amd64.zip\n      bin: clojure-lsp\n    - target: linux_arm64\n      file: clojure-lsp-native-linux-aarch64.zip\n      bin: clojure-lsp\n    - target: win_x64\n      file: clojure-lsp-native-windows-amd64.zip\n      bin: clojure-lsp.exe\n\nbin:\n  clojure-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: clojure_lsp\n"
  },
  {
    "path": "packages/cmake-language-server/package.yaml",
    "content": "---\nname: cmake-language-server\ndescription: CMake LSP Implementation.\nhomepage: https://github.com/regen100/cmake-language-server\nlicenses:\n  - MIT\nlanguages:\n  - CMake\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/cmake-language-server@0.1.11\n\nbin:\n  cmake-language-server: pypi:cmake-language-server\n\nneovim:\n  lspconfig: cmake\n"
  },
  {
    "path": "packages/cmakelang/package.yaml",
    "content": "---\nname: cmakelang\ndescription: Language tools for cmake (format, lint, etc).\nhomepage: https://pypi.org/project/cmakelang/\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - CMake\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:pypi/cmakelang@0.6.13?extra=YAML\n\nbin:\n  cmake-annotate: pypi:cmake-annotate\n  cmake-format: pypi:cmake-format\n  cmake-lint: pypi:cmake-lint\n  ctest-to: pypi:ctest-to\n"
  },
  {
    "path": "packages/cmakelint/package.yaml",
    "content": "---\nname: cmakelint\ndescription: cmakelint parses CMake files and reports style issues.\nhomepage: https://github.com/cmake-lint/cmake-lint\nlicenses:\n  - Apache-2.0\nlanguages:\n  - CMake\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/cmakelint@1.4.3\n\nbin:\n  cmakelint: pypi:cmakelint\n"
  },
  {
    "path": "packages/cobol-language-support/package.yaml",
    "content": "---\nname: cobol-language-support\ndescription: COBOL Language Support provides autocomplete, highlighting and diagnostics for COBOL code and copybooks\nhomepage: https://github.com/eclipse-che4z/che-che4z-lsp-for-cobol\nlicenses:\n  - EPL-2.0\nlanguages:\n  - COBOL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/eclipse-che4z/che-che4z-lsp-for-cobol@2.4.3\n  asset:\n    - target: darwin_arm64\n      file: cobol-language-support-darwin-arm64-{{version}}.vsix\n      bin: extension/server/native/server-mac\n    - target: darwin_x64\n      file: cobol-language-support-darwin-x64-{{version}}.vsix\n      bin: extension/server/native/server-mac\n    - target: linux_arm64\n      file: cobol-language-support-linux-arm64-{{version}}.vsix\n      bin: extension/server/native/server-linux\n    - target: linux_x64\n      file: cobol-language-support-linux-x64-{{version}}.vsix\n      bin: extension/server/native/server-linux\n    - target: win_arm64\n      file: cobol-language-support-win32-arm64-{{version}}-signed.vsix\n      bin: extension/server/native/engine.exe\n    - target: win_x64\n      file: cobol-language-support-win32-x64-{{version}}-signed.vsix\n      bin: extension/server/native/engine.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/eclipse-che4z/che-che4z-lsp-for-cobol/{{version}}/clients/cobol-lsp-vscode-extension/package.json\n\nbin:\n  cobol-language-support: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: cobol_ls\n"
  },
  {
    "path": "packages/codebook/package.yaml",
    "content": "---\nname: codebook\ndescription: An unholy spell checker for code.\nhomepage: https://github.com/blopker/codebook\nlicenses:\n  - MIT\nlanguages:\n  - C\n  - CSS\n  - Go\n  - HTML\n  - Haskell\n  - Java\n  - JavaScript\n  - Lua\n  - Markdown\n  - PHP\n  - Plain\n  - Python\n  - Ruby\n  - Rust\n  - TOML\n  - TypeScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/blopker/codebook@v0.3.38\n  asset:\n    - target: linux_x64_gnu\n      file: codebook-lsp-x86_64-unknown-linux-musl.tar.gz\n      bin: codebook-lsp\n    - target: linux_arm64_gnu\n      file: codebook-lsp-aarch64-unknown-linux-musl.tar.gz\n      bin: codebook-lsp\n    - target: darwin_x64\n      file: codebook-lsp-x86_64-apple-darwin.tar.gz\n      bin: codebook-lsp\n    - target: darwin_arm64\n      file: codebook-lsp-aarch64-apple-darwin.tar.gz\n      bin: codebook-lsp\n    - target: win_x64\n      file: codebook-lsp-x86_64-pc-windows-msvc.zip\n      bin: codebook-lsp.exe\n\nbin:\n  codebook-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: codebook\n"
  },
  {
    "path": "packages/codelldb/package.yaml",
    "content": "---\nname: codelldb\ndescription: A native debugger based on LLDB.\nhomepage: https://github.com/vadimcn/vscode-lldb\nlicenses:\n  - MIT\nlanguages:\n  - C\n  - C++\n  - Rust\n  - Zig\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/vadimcn/vscode-lldb@v1.12.2\n  asset:\n    - target: darwin_x64\n      file: codelldb-darwin-x64.vsix\n      bin: exec:extension/adapter/codelldb\n    - target: darwin_arm64\n      file: codelldb-darwin-arm64.vsix\n      bin: exec:extension/adapter/codelldb\n    - target: linux_x64_gnu\n      file: codelldb-linux-x64.vsix\n      bin: exec:extension/adapter/codelldb\n    - target: linux_arm64_gnu\n      file: codelldb-linux-arm64.vsix\n      bin: exec:extension/adapter/codelldb\n    - target: linux_arm_gnu\n      file: codelldb-linux-armhf.vsix\n      bin: exec:extension/adapter/codelldb\n    - target: win_x64\n      file: codelldb-win32-x64.vsix\n      bin: extension/adapter/codelldb.exe\n\n  version_overrides:\n    - constraint: semver:<=v1.10.0\n      id: pkg:github/vadimcn/vscode-lldb@v1.10.0\n      asset:\n        - target: darwin_x64\n          file: codelldb-x86_64-darwin.vsix\n          bin: exec:extension/adapter/codelldb\n        - target: darwin_arm64\n          file: codelldb-aarch64-darwin.vsix\n          bin: exec:extension/adapter/codelldb\n        - target: linux_x64_gnu\n          file: codelldb-x86_64-linux.vsix\n          bin: exec:extension/adapter/codelldb\n        - target: linux_arm64_gnu\n          file: codelldb-aarch64-linux.vsix\n          bin: exec:extension/adapter/codelldb\n        - target: linux_arm_gnu\n          file: codelldb-arm-linux.vsix\n          bin: exec:extension/adapter/codelldb\n        - target: win_x64\n          file: codelldb-x86_64-windows.vsix\n          bin: extension/adapter/codelldb.exe\n\nbin:\n  codelldb: \"{{source.asset.bin}}\"\n\nopt:\n  lldb/: extension/lldb/\n"
  },
  {
    "path": "packages/codeql/package.yaml",
    "content": "---\nname: codeql\ndescription: |\n  Discover vulnerabilities across a codebase with CodeQL, our industry-leading semantic code analysis engine. CodeQL\n  lets you query code as though it were data. Write a query to find all variants of a vulnerability, eradicating it\n  forever. Then share your query to help others do the same.\nhomepage: https://github.com/github/codeql-cli-binaries\nlicenses:\n  - proprietary\nlanguages:\n  - CodeQL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/github/codeql-cli-binaries@v2.25.2\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: codeql-osx64.zip\n      bin: codeql/codeql\n    - target: linux_x64\n      file: codeql-linux64.zip\n      bin: codeql/codeql\n    - target: win_x64\n      file: codeql-win64.zip\n      bin: codeql/codeql.exe\n\nbin:\n  codeql: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: codeqlls\n"
  },
  {
    "path": "packages/codespell/package.yaml",
    "content": "---\nname: codespell\ndescription: Check code for common misspellings.\nhomepage: https://github.com/codespell-project/codespell\nlicenses:\n  - GPL-2.0-or-later\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/codespell@2.4.2\n\nbin:\n  codespell: pypi:codespell\n"
  },
  {
    "path": "packages/coffeesense-language-server/package.yaml",
    "content": "---\nname: coffeesense-language-server\ndescription: Language server for CoffeeScript.\nhomepage: https://github.com/phil294/coffeesense\nlicenses:\n  - MIT\nlanguages:\n  - CoffeeScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/coffeesense-language-server@1.15.0\n\nbin:\n  coffeesense-language-server: npm:coffeesense-language-server\n"
  },
  {
    "path": "packages/colorgen-nvim/package.yaml",
    "content": "---\nname: colorgen-nvim\ndescription: Blazingly fast colorscheme generator for Neovim written in Rust.\nhomepage: https://github.com/ChristianChiarulli/colorgen-nvim\nlicenses:\n  - GPL-3.0-or-later\nlanguages: []\ncategories:\n  - Compiler\n\nsource:\n  id: pkg:cargo/colorgen-nvim@0.1.0?repository_url=https://github.com/ChristianChiarulli/colorgen-nvim\n\nbin:\n  colorgen-nvim: cargo:colorgen-nvim\n"
  },
  {
    "path": "packages/commitlint/package.yaml",
    "content": "---\nname: commitlint\ndescription: commitlint checks if your commit messages meet the conventional commit format.\nhomepage: https://commitlint.js.org/\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/%40commitlint/cli@20.5.2\n  extra_packages:\n    - \"@commitlint/config-conventional\"\n    - \"commitlint-format-json\"\n\nbin:\n  commitlint: npm:commitlint\n"
  },
  {
    "path": "packages/contextive/package.yaml",
    "content": "---\nname: contextive\ndescription: |\n  Supports developers where a complex domain or project specific language is in use by surfacing definitions everywhere\n  specific words are used - code, comments, config or documentation.\nhomepage: https://github.com/dev-cycles/contextive\nlicenses:\n  - MIT\nlanguages:\n  - F#\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/dev-cycles/contextive@v1.17.8\n  asset:\n    - target: linux_x64_gnu\n      file: Contextive.LanguageServer-linux-x64-{{ version | strip_prefix \"v\" }}.zip\n      bin: Contextive.LanguageServer\n    - target: linux_arm64_gnu\n      file: Contextive.LanguageServer-linux-arm64-{{ version | strip_prefix \"v\" }}.zip\n      bin: Contextive.LanguageServer\n    - target: darwin_x64\n      file: Contextive.LanguageServer-osx-x64-{{ version | strip_prefix \"v\" }}.zip\n      bin: Contextive.LanguageServer\n    - target: darwin_arm64\n      file: Contextive.LanguageServer-osx-arm64-{{ version | strip_prefix \"v\" }}.zip\n      bin: Contextive.LanguageServer\n    - target: win_x64\n      file: Contextive.LanguageServer-win-x64-{{ version | strip_prefix \"v\" }}.zip\n      bin: Contextive.LanguageServer.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/dev-cycles/contextive/{{version}}/src/vscode/contextive/package.json\n\nbin:\n  Contextive.LanguageServer: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/copilot-language-server/package.yaml",
    "content": "---\nname: copilot-language-server\ndescription: The Copilot Language Server enables any editor or IDE to integrate with GitHub Copilot via the language server protocol.\nhomepage: https://www.npmjs.com/package/@github/copilot-language-server\nlicenses:\n  - proprietary\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40github/copilot-language-server@1.476.0\n\nbin:\n  copilot-language-server: npm:copilot-language-server\n\nneovim:\n  lspconfig: copilot\n"
  },
  {
    "path": "packages/coq-lsp/package.yaml",
    "content": "---\nname: coq-lsp\ndescription: Visual Studio Code Extension and Language Server Protocol for coq\nhomepage: https://github.com/ejgallego/coq-lsp/\nlicenses:\n  - LGPL-2.1-or-later\nlanguages:\n  - Coq\ncategories:\n  - LSP\n\nsource:\n  id: pkg:opam/coq-lsp@0.1.8+8.19\n\nbin:\n  coq-lsp: opam:coq-lsp\n\nneovim:\n  lspconfig: coq_lsp\n"
  },
  {
    "path": "packages/cortex-debug/package.yaml",
    "content": "---\nname: cortex-debug\ndescription: Visual Studio Code extension for enhancing debug capabilities for Cortex-M Microcontrollers.\nhomepage: https://github.com/Marus/cortex-debug\nlicenses:\n  - MIT\nlanguages:\n  - C\n  - C++\n  - Rust\ncategories:\n  - DAP\n\nsource:\n  id: pkg:openvsx/marus25/cortex-debug@1.12.1\n  download:\n    file: marus25.cortex-debug-{{version}}.vsix\n\nshare:\n  cortex-debug/: extension/\n"
  },
  {
    "path": "packages/cpplint/package.yaml",
    "content": "---\nname: cpplint\ndescription: Cpplint is a command-line tool to check C/C++ files for style issues following Google's C++ style guide.\nhomepage: https://pypi.org/project/cpplint/\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - C\n  - C++\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/cpplint@2.0.2\n\nbin:\n  cpplint: pypi:cpplint\n"
  },
  {
    "path": "packages/cpptools/package.yaml",
    "content": "---\nname: cpptools\ndescription: Official repository for the Microsoft C/C++ extension for VS Code.\nhomepage: https://github.com/microsoft/vscode-cpptools\nlicenses:\n  - MIT\nlanguages:\n  - C\n  - C++\n  - Rust\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/microsoft/vscode-cpptools@v1.31.5\n  asset:\n    - target: darwin_x64\n      file: cpptools-macOS-x64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7\n    - target: darwin_arm64\n      file: cpptools-macOS-arm64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7\n    - target: linux_arm64\n      file: cpptools-linux-arm64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7\n    - target: linux_x64\n      file: cpptools-linux-x64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7\n    - target: linux_arm\n      file: cpptools-linux-arm32.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7\n    - target: win_arm64\n      file: cpptools-windows-arm64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7.exe\n    - target: win_x64\n      file: cpptools-windows-x64.vsix\n      bin: extension/debugAdapters/bin/OpenDebugAD7.exe\n\n  version_overrides:\n    - constraint: semver:<=v1.20.5\n      id: pkg:github/microsoft/vscode-cpptools@v1.20.5\n      asset:\n        - target: darwin_x64\n          file: cpptools-osx.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7\n        - target: darwin_arm64\n          file: cpptools-osx-arm64.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7\n        - target: linux_arm64\n          file: cpptools-linux-aarch64.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7\n        - target: linux_x64\n          file: cpptools-linux.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7\n        - target: linux_arm\n          file: cpptools-linux-armhf.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7\n        - target: win_arm64\n          file: cpptools-win-arm64.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7.exe\n        - target: win_x64\n          file: cpptools-win64.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7.exe\n        - target: win_x86\n          file: cpptools-win32.vsix\n          bin: extension/debugAdapters/bin/OpenDebugAD7.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode-cpptools/{{version}}/Extension/package.json\n\nbin:\n  OpenDebugAD7: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/cql-language-server/package.yaml",
    "content": "---\nname: cql-language-server\ndescription: A language server for Clinical Quality Language (CQL).\nhomepage: https://github.com/cqframework/cql-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - CQL\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/cqframework/cql-language-server@v4.4.1\n  download:\n    files:\n      cql-ls-service.jar: https://repo1.maven.org/maven2/org/opencds/cqf/cql/ls/cql-ls-service/{{ version | strip_prefix \"v\" }}/cql-ls-service-{{ version | strip_prefix \"v\" }}.jar\n\nbin:\n  cql-language-server: java-jar:cql-ls-service.jar\n\nshare:\n  cql/cql-ls-service.jar: cql-ls-service.jar\n"
  },
  {
    "path": "packages/crlfmt/package.yaml",
    "content": "---\nname: crlfmt\ndescription: Formatter for Go code that enforces the CockroachDB Style Guide.\nhomepage: https://github.com/cockroachdb/crlfmt\nlicenses:\n  - Apache-2.0\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/cockroachdb/crlfmt@v0.4.0\n\nbin:\n  crlfmt: golang:crlfmt\n"
  },
  {
    "path": "packages/cronstrue/package.yaml",
    "content": "---\nname: cronstrue\ndescription: JavaScript library that translates Cron expressions into human readable descriptions.\nhomepage: https://github.com/bradymholt/cRonstrue\nlicenses:\n  - MIT\nlanguages: []\ncategories: []\n\nsource:\n  id: pkg:npm/cronstrue@3.14.0\n\nbin:\n  cronstrue: npm:cronstrue\n"
  },
  {
    "path": "packages/crystalline/package.yaml",
    "content": "---\nname: crystalline\ndescription: A Language Server Protocol implementation for Crystal.\nhomepage: https://github.com/elbywan/crystalline\nlicenses:\n  - MIT\nlanguages:\n  - Crystal\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/elbywan/crystalline@v0.17.1\n  asset:\n    - target: darwin_arm64\n      file: crystalline_arm64-apple-darwin.gz\n      bin: crystalline_arm64-apple-darwin\n    - target: darwin_x64\n      file: crystalline_x86_64-apple-darwin.gz\n      bin: crystalline_x86_64-apple-darwin\n    - target: linux_x64\n      file: crystalline_x86_64-unknown-linux-musl.gz\n      bin: crystalline_x86_64-unknown-linux-musl\n\nbin:\n  crystalline: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: crystalline\n"
  },
  {
    "path": "packages/csharp-language-server/package.yaml",
    "content": "---\nname: csharp-language-server\ndescription: Roslyn-based LSP language server for C#.\nhomepage: https://github.com/razzmatazz/csharp-language-server\nlicenses:\n  - MIT\nlanguages:\n  - C#\ncategories:\n  - LSP\n\nsource:\n  id: pkg:nuget/csharp-ls@0.24.0\n\nbin:\n  csharp-ls: nuget:csharp-ls\n\nneovim:\n  lspconfig: csharp_ls\n"
  },
  {
    "path": "packages/csharpier/package.yaml",
    "content": "---\nname: csharpier\ndescription: CSharpier is an opinionated code formatter for C#.\nhomepage: https://csharpier.com\nlicenses:\n  - MIT\nlanguages:\n  - C#\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:nuget/csharpier@1.2.6\n\nbin:\n  csharpier: nuget:csharpier\n"
  },
  {
    "path": "packages/cspell/package.yaml",
    "content": "---\nname: cspell\ndescription: A Spell Checker for Code.\nhomepage: https://github.com/streetsidesoftware/cspell\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/cspell@10.0.0\n\nbin:\n  cspell: npm:cspell\n"
  },
  {
    "path": "packages/cspell-lsp/package.yaml",
    "content": "---\nname: cspell-lsp\ndescription: Language Server Protocol implementation for CSpell, a spell checker for code.\nhomepage: https://github.com/vlabo/cspell-lsp\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/@vlabo/cspell-lsp@1.1.5\n\nbin:\n  cspell-lsp: npm:cspell-lsp\n\nneovim:\n  lspconfig: cspell_ls\n"
  },
  {
    "path": "packages/css-lsp/package.yaml",
    "content": "---\nname: css-lsp\ndescription: Language Server Protocol implementation for CSS, SCSS & LESS.\nhomepage: https://github.com/microsoft/vscode-css-languageservice\nlicenses:\n  - MIT\nlanguages:\n  - CSS\n  - SCSS\n  - LESS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vscode-langservers-extracted@4.10.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode/main/extensions/css-language-features/package.json\n\nbin:\n  vscode-css-language-server: npm:vscode-css-language-server\n\nneovim:\n  lspconfig: cssls\n"
  },
  {
    "path": "packages/css-variables-language-server/package.yaml",
    "content": "---\nname: css-variables-language-server\ndescription: Autocompletion and go-to-definition for project-wide CSS variables.\nhomepage: https://github.com/vunguyentuan/vscode-css-variables\nlicenses:\n  - MIT\nlanguages:\n  - CSS\n  - SCSS\n  - LESS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/css-variables-language-server@2.8.4\n\nbin:\n  css-variables-language-server: npm:css-variables-language-server\nneovim:\n  lspconfig: css_variables\n"
  },
  {
    "path": "packages/csskit/package.yaml",
    "content": "---\nname: csskit\ndescription: |\n  Beautiful, fast, and powerful CSS tooling with zero configuration\nhomepage: https://csskit.rs\nlicenses:\n  - MIT\nlanguages:\n  - CSS\ncategories:\n  - LSP\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/csskit/csskit@v0.0.20\n  asset:\n    - target: darwin_arm64\n      file: csskit-darwin-arm64\n    - target: darwin_x64\n      file: csskit-darwin-x64\n    - target: linux_arm64_gnu\n      file: csskit-linux-arm64\n    - target: linux_x64_gnu\n      file: csskit-linux-x64\n    - target: win_arm64\n      file: csskit-win32-arm64.exe\n    - target: win_x64\n      file: csskit-win32-x64.exe\n\nbin:\n  csskit: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: csskit\n"
  },
  {
    "path": "packages/cssmodules-language-server/package.yaml",
    "content": "---\nname: cssmodules-language-server\ndescription: Autocompletion and go-to-definition for cssmodules.\nhomepage: https://github.com/antonk52/cssmodules-language-server\nlicenses:\n  - MIT\nlanguages:\n  - CSS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/cssmodules-language-server@1.5.2\n\nbin:\n  cssmodules-language-server: npm:cssmodules-language-server\n\nneovim:\n  lspconfig: cssmodules_ls\n"
  },
  {
    "path": "packages/ctags-lsp/package.yaml",
    "content": "---\nname: ctags-lsp\ndescription: A simple LSP server wrapping universal-ctags. Provides code completion, go-to-definition, and document/workspace symbols.\nhomepage: https://github.com/netmute/ctags-lsp\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/netmute/ctags-lsp@v0.11.0\n  asset:\n    - target: darwin_arm64\n      file: ctags-lsp_Darwin_arm64.tar.gz\n      bin: ctags-lsp\n    - target: darwin_x64\n      file: ctags-lsp_Darwin_x86_64.tar.gz\n      bin: ctags-lsp\n    - target: linux_arm64\n      file: ctags-lsp_Linux_arm64.tar.gz\n      bin: ctags-lsp\n    - target: linux_x64\n      file: ctags-lsp_Linux_x86_64.tar.gz\n      bin: ctags-lsp\n    - target: win_arm64\n      file: ctags-lsp_Windows_arm64.zip\n      bin: ctags-lsp.exe\n    - target: win_x64\n      file: ctags-lsp_Windows_x86_64.zip\n      bin: ctags-lsp.exe\n\nbin:\n  ctags-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: ctags_lsp\n"
  },
  {
    "path": "packages/cucumber-language-server/package.yaml",
    "content": "---\nname: cucumber-language-server\ndescription: Cucumber Language Server.\nhomepage: https://github.com/cucumber/language-server\nlicenses:\n  - MIT\nlanguages:\n  - Cucumber\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40cucumber/language-server@1.7.0\n\nbin:\n  cucumber-language-server: npm:cucumber-language-server\n\nneovim:\n  lspconfig: cucumber_language_server\n"
  },
  {
    "path": "packages/cue/package.yaml",
    "content": "---\nname: cue\ndescription: The Official Language Server implementation for CUE.\nhomepage: https://github.com/cue-lang/cue\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Cue\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/cuelang.org/go@v0.16.1#cmd/cue\n\nbin:\n  cue: golang:cue\n\nneovim:\n  lspconfig: cue\n"
  },
  {
    "path": "packages/cueimports/package.yaml",
    "content": "---\nname: cueimports\ndescription: CUE tool that updates your import lines, adding missing ones and removing unused ones.\nhomepage: https://github.com/asdine/cueimports\nlicenses:\n  - MIT\nlanguages:\n  - Cue\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/asdine/cueimports@v0.3.2#cmd/cueimports\n\nbin:\n  cueimports: golang:cueimports\n"
  },
  {
    "path": "packages/cuelsp/package.yaml",
    "content": "---\nname: cuelsp\ndescription: Language Server implementation for CUE, with built-in support for Dagger.\nhomepage: https://github.com/dagger/cuelsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Cue\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/dagger/cuelsp@v0.3.4#cmd/cuelsp\n\nbin:\n  cuelsp: golang:cuelsp\n\nneovim:\n  lspconfig: dagger\n"
  },
  {
    "path": "packages/curlylint/package.yaml",
    "content": "---\nname: curlylint\ndescription: Experimental HTML templates linting for Jinja, Nunjucks, Django templates, Twig, Liquid.\nhomepage: https://www.curlylint.org/\nlicenses:\n  - MIT\nlanguages:\n  - Django\n  - Jinja\n  - Liquid\n  - Nunjucks\n  - Twig\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/curlylint@0.13.1\n\nbin:\n  curlylint: pypi:curlylint\n"
  },
  {
    "path": "packages/custom-elements-languageserver/package.yaml",
    "content": "---\nname: custom-elements-languageserver\ndescription: |\n  Custom Elements Language Server provides useful language features for Web Components. Features include code actions, completons, diagnostics and more.\nhomepage: https://github.com/Matsuuu/custom-elements-language-server\nlicenses:\n  - BSD-3-Clause\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/custom-elements-languageserver@1.0.4\n\nschemas:\n  lsp: https://raw.githubusercontent.com/Matsuuu/custom-elements-language-server/v.{{version}}/package.json\n\nbin:\n  custom-elements-languageserver: npm:custom-elements-languageserver\n\nneovim:\n  lspconfig: custom_elements_ls\n"
  },
  {
    "path": "packages/cypher-language-server/package.yaml",
    "content": "---\nname: cypher-language-server\ndescription: Language Server for Cypher query language.\nhomepage: https://github.com/neo4j/cypher-language-support\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Cypher\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40neo4j-cypher/language-server@0.0.0-canary-20250423075344\n\nbin:\n  cypher-language-server: npm:cypher-language-server\n\nneovim:\n  lspconfig: cypher_ls\n"
  },
  {
    "path": "packages/darker/package.yaml",
    "content": "---\nname: darker\ndescription: Apply black reformatting to Python files only in regions changed since a given commit.\nhomepage: https://pypi.org/project/darker/\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/darker@3.0.0?extra=black,isort,flynt\n\nbin:\n  darker: pypi:darker\n"
  },
  {
    "path": "packages/dart-debug-adapter/package.yaml",
    "content": "---\nname: dart-debug-adapter\ndescription: Dart debug adapter sourced from the Dart VSCode extension.\nhomepage: https://github.com/Dart-Code/Dart-Code\nlicenses:\n  - MIT\nlanguages:\n  - Dart\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/Dart-Code/Dart-Code@v3.132.0\n  asset:\n    file: dart-code-{{ version | strip_prefix \"v\" }}.vsix\n\nbin:\n  dart-debug-adapter: node:extension/out/dist/debug.js\n"
  },
  {
    "path": "packages/dcm/package.yaml",
    "content": "---\nname: dcm\ndescription: Language server for DCM analyzer\nhomepage: https://dcm.dev/\nlicenses:\n  - proprietary\nlanguages:\n  - Dart\ncategories:\n  - LSP\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/CQLabs/homebrew-dcm@1.37.0\n  asset:\n    - target: darwin_arm64\n      file: dcm-macos-arm-release.zip\n      bin: dcm\n    - target: darwin_x64\n      file: dcm-macos-x64-release.zip\n      bin: dcm\n    - target: linux_x64\n      file: dcm-linux-x64-release.zip\n      bin: dcm\n    - target: win_x64\n      file: dcm-windows-release.zip\n      bin: dcm.exe\n\nbin:\n  dcm: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/debugpy/package.yaml",
    "content": "---\nname: debugpy\ndescription: An implementation of the Debug Adapter Protocol for Python.\nhomepage: https://github.com/microsoft/debugpy\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - DAP\n\nsource:\n  id: pkg:pypi/debugpy@1.8.20\n\nbin:\n  debugpy: pyvenv:debugpy\n  debugpy-adapter: pyvenv:debugpy.adapter\n"
  },
  {
    "path": "packages/delve/package.yaml",
    "content": "---\nname: delve\ndescription: Delve is a debugger for the Go programming language.\nhomepage: https://github.com/go-delve/delve\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - DAP\n\nsource:\n  id: pkg:golang/github.com/go-delve/delve@v1.26.2#cmd/dlv\n\nbin:\n  dlv: golang:dlv\n"
  },
  {
    "path": "packages/deno/package.yaml",
    "content": "---\nname: deno\ndescription: |\n  Deno (/ˈdiːnoʊ/, pronounced dee-no) is a JavaScript, TypeScript, and WebAssembly runtime with secure defaults and a\n  great developer experience.\nhomepage: https://deno.land/\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n  - Runtime\n  - Linter\n\nsource:\n  id: pkg:github/denoland/deno@v2.7.13\n  asset:\n    - target: darwin_arm64\n      file: deno-aarch64-apple-darwin.zip\n      bin: deno\n    - target: linux_arm64_gnu\n      file: deno-aarch64-unknown-linux-gnu.zip\n      bin: deno\n    - target: darwin_x64\n      file: deno-x86_64-apple-darwin.zip\n      bin: deno\n    - target: linux_x64_gnu\n      file: deno-x86_64-unknown-linux-gnu.zip\n      bin: deno\n    - target: win_x64\n      file: deno-x86_64-pc-windows-msvc.zip\n      bin: deno.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/denoland/vscode_deno/main/package.json\n\nbin:\n  deno: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: denols\n"
  },
  {
    "path": "packages/detekt/package.yaml",
    "content": "---\nname: detekt\ndescription: |\n  A static code analyzer for Kotlin.\nhomepage: https://detekt.dev/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Kotlin\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/detekt/detekt@v1.23.8\n  asset:\n    - target: unix\n      file: detekt-cli-{{ version | strip_prefix \"v\" }}.zip\n      bin: detekt-cli-{{ version | strip_prefix \"v\" }}/bin/detekt-cli\n    - target: win\n      file: detekt-cli-{{ version | strip_prefix \"v\" }}.zip\n      bin: detekt-cli-{{ version | strip_prefix \"v\" }}/bin/detekt-cli.bat\n\nbin:\n  detekt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/dhall-lsp/package.yaml",
    "content": "---\nname: dhall-lsp\ndescription: LSP server implementation for Dhall.\nhomepage: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-lsp-server\nlicenses:\n  - MIT\nlanguages:\n  - Dhall\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/dhall-lang/dhall-haskell@1.42.2\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: dhall-lsp-server-1.1.4-x86_64-darwin.tar.bz2\n      bin: bin/dhall-lsp-server\n    - target: linux_x64\n      file: dhall-lsp-server-1.1.4-x86_64-Linux.tar.bz2\n      bin: bin/dhall-lsp-server\n    - target: win_x64\n      file: dhall-lsp-server-1.1.4-x86_64-windows.zip\n      bin: bin/dhall-lsp-server.exe\n\nbin:\n  dhall-lsp-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: dhall_lsp_server\n"
  },
  {
    "path": "packages/diagnostic-languageserver/package.yaml",
    "content": "---\nname: diagnostic-languageserver\ndescription: Diagnostic language server that integrates with linters.\nhomepage: https://github.com/iamcco/diagnostic-languageserver\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/diagnostic-languageserver@1.15.0\n\nbin:\n  diagnostic-languageserver: npm:diagnostic-languageserver\n\nneovim:\n  lspconfig: diagnosticls\n"
  },
  {
    "path": "packages/digestif/package.yaml",
    "content": "---\nname: digestif\ndescription: A language server for TeX and friends\nhomepage: https://github.com/astoff/digestif\nlicenses:\n  - GPL-3.0+\nlanguages:\n  - LaTeX\ncategories:\n  - LSP\n\nsource:\n  id: pkg:luarocks/digestif@0.5.1-1\n\nbin:\n  digestif: luarocks:digestif\n\nci_skip:\n  - win_x64\n"
  },
  {
    "path": "packages/dingo/package.yaml",
    "content": "---\nname: dingo\ndescription: |\n  Dingo is a meta-language for Go that adds enhanced type safety and modern syntax (enums, pattern matching,\n  error propagation, lambdas) while transpiling to idiomatic Go code. The CLI provides build, run, format,\n  and lint commands.\nhomepage: https://github.com/MadAppGang/dingo\nlicenses:\n  - MIT\nlanguages:\n  - Dingo\n  - Go\ncategories:\n  - Compiler\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:golang/github.com/MadAppGang/dingo/cmd/dingo@v0.14.0\n\nbin:\n  dingo: golang:dingo\n"
  },
  {
    "path": "packages/dingo-lsp/package.yaml",
    "content": "---\nname: dingo-lsp\ndescription: |\n  Language Server Protocol implementation for Dingo. Wraps gopls and translates positions between .dingo\n  and .go files using source maps, providing full IDE support including go-to-definition, hover, completion,\n  diagnostics, and rename refactoring.\nhomepage: https://github.com/MadAppGang/dingo\nlicenses:\n  - MIT\nlanguages:\n  - Dingo\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/MadAppGang/dingo/cmd/dingo-lsp@v0.14.0\n\nbin:\n  dingo-lsp: golang:dingo-lsp\n"
  },
  {
    "path": "packages/django-language-server/package.yaml",
    "content": "---\nname: django-language-server\ndescription: A language server for the Django web framework \nhomepage: https://github.com/joshuadavidthomas/django-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/django-language-server@6.0.2\n\nbin:\n  djls: pypi:djls\n\nneovim:\n  lspconfig: djls\n"
  },
  {
    "path": "packages/django-template-lsp/package.yaml",
    "content": "---\nname: django-template-lsp\ndescription: A language server for Django templates.\nhomepage: https://github.com/fourdigits/django-template-lsp\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Python\n  - Django\n  - HTML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/django-template-lsp@1.2.2\n\nbin:\n  djlsp: pypi:django-template-lsp\n\nneovim:\n  lspconfig: djlsp\n"
  },
  {
    "path": "packages/djlint/package.yaml",
    "content": "---\nname: djlint\ndescription: HTML Template Linter and Formatter. Django - Jinja - Nunjucks - Handlebars - GoLang.\nhomepage: https://github.com/Riverside-Healthcare/djLint\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Django\n  - Go\n  - Nunjucks\n  - Twig\n  - Handlebars\n  - Mustache\n  - Angular\n  - Jinja\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:pypi/djlint@1.36.4\n\nbin:\n  djlint: pypi:djlint\n"
  },
  {
    "path": "packages/docformatter/package.yaml",
    "content": "---\nname: docformatter\ndescription: docformatter automatically formats docstrings to follow a subset of the PEP 257 conventions.\nhomepage: https://pypi.org/project/docformatter/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/docformatter@1.7.7\n\nbin:\n  docformatter: pypi:docformatter\n"
  },
  {
    "path": "packages/docker-compose-language-service/package.yaml",
    "content": "---\nname: docker-compose-language-service\ndescription: A language server for Docker Compose.\nhomepage: https://github.com/microsoft/compose-language-service\nlicenses:\n  - MIT\nlanguages:\n  - Docker\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40microsoft/compose-language-service@0.5.0\n\nbin:\n  docker-compose-langserver: npm:docker-compose-langserver\n\nneovim:\n  lspconfig: docker_compose_language_service\n"
  },
  {
    "path": "packages/docker-language-server/package.yaml",
    "content": "---\nname: docker-language-server\ndescription: Language server for Dockerfiles, Compose files, and Bake files.\nhomepage: https://github.com/docker/docker-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Docker\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/docker/docker-language-server@v0.20.1\n  asset:\n    - target: darwin_x64\n      file: docker-language-server-darwin-amd64-{{version}}\n    - target: darwin_arm64\n      file: docker-language-server-darwin-arm64-{{version}}\n    - target: linux_arm64_gnu\n      file: docker-language-server-linux-arm64-{{version}}\n    - target: linux_arm64_musl\n      file: docker-language-server-linux-arm64-{{version}}\n    - target: linux_x64_gnu\n      file: docker-language-server-linux-amd64-{{version}}\n    - target: linux_x64_musl\n      file: docker-language-server-linux-amd64-{{version}}\n    - target: win_arm64\n      file: docker-language-server-windows-arm64-{{version}}.exe\n    - target: win_x64\n      file: docker-language-server-windows-amd64-{{version}}.exe\n\nbin:\n  docker-language-server: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: docker_language_server\n\n"
  },
  {
    "path": "packages/dockerfile-language-server/package.yaml",
    "content": "---\nname: dockerfile-language-server\ndescription: A language server for Dockerfiles powered by Node.js, TypeScript, and VSCode technologies.\nhomepage: https://github.com/rcjsuen/dockerfile-language-server-nodejs\nlicenses:\n  - MIT\nlanguages:\n  - Docker\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/dockerfile-language-server-nodejs@0.15.0\n\nbin:\n  docker-langserver: npm:docker-langserver\n\nneovim:\n  lspconfig: dockerls\n"
  },
  {
    "path": "packages/doctoc/package.yaml",
    "content": "---\nname: doctoc\ndescription: API and CLI for generating a markdown TOC (table of contents) for a README or any markdown files.\nhomepage: https://github.com/thlorenz/doctoc\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/doctoc@2.4.1\n\nbin:\n  doctoc: npm:doctoc\n"
  },
  {
    "path": "packages/dot-language-server/package.yaml",
    "content": "---\nname: dot-language-server\ndescription: A language server for the DOT language.\nhomepage: https://github.com/nikeee/dot-language-server\nlicenses:\n  - MIT\nlanguages:\n  - DOT\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/dot-language-server@3.1.0\n\nbin:\n  dot-language-server: npm:dot-language-server\n\nneovim:\n  lspconfig: dotls\n"
  },
  {
    "path": "packages/dotenv-linter/package.yaml",
    "content": "---\nname: dotenv-linter\ndescription: ⚡️Lightning-fast linter for .env files. Written in Rust 🦀\nhomepage: https://dotenv-linter.github.io/#/\nlicenses:\n  - MIT\nlanguages:\n  - Dotenv\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/dotenv-linter/dotenv-linter@v4.0.0\n  asset:\n    - target: darwin_arm64\n      file: dotenv-linter-darwin-arm64.tar.gz\n      bin: dotenv-linter\n    - target: darwin_x64\n      file: dotenv-linter-darwin-x86_64.tar.gz\n      bin: dotenv-linter\n    - target: linux_arm64_gnu\n      file: dotenv-linter-linux-aarch64.tar.gz\n      bin: dotenv-linter\n    - target: linux_arm64_musl\n      file: dotenv-linter-alpine-aarch64.tar.gz\n      bin: dotenv-linter\n    - target: linux_x64_gnu\n      file: dotenv-linter-linux-x86_64.tar.gz\n      bin: dotenv-linter\n    - target: linux_x64_musl\n      file: dotenv-linter-alpine-x86_64.tar.gz\n      bin: dotenv-linter\n    - target: win_arm64\n      file: dotenv-linter-win-aarch64.zip\n      bin: dotenv-linter.exe\n    - target: win_x64\n      file: dotenv-linter-win-x64.zip\n      bin: dotenv-linter.exe\n\nbin:\n  dotenv-linter: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/dprint/package.yaml",
    "content": "---\nname: dprint\ndescription: A pluggable and configurable code formatting platform written in Rust.\nhomepage: https://dprint.dev/\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:github/dprint/dprint@0.54.0\n  asset:\n    - target: darwin_arm64\n      file: dprint-aarch64-apple-darwin.zip\n      bin: dprint\n    - target: darwin_x64\n      file: dprint-x86_64-apple-darwin.zip\n      bin: dprint\n    - target: linux_x64_gnu\n      file: dprint-x86_64-unknown-linux-gnu.zip\n      bin: dprint\n    - target: linux_x64\n      file: dprint-x86_64-unknown-linux-musl.zip\n      bin: dprint\n    - target: linux_arm64_gnu\n      file: dprint-aarch64-unknown-linux-gnu.zip\n      bin: dprint\n    - target: win_x64\n      file: dprint-x86_64-pc-windows-msvc.zip\n      bin: dprint.exe\n\nbin:\n  dprint: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: dprint\n"
  },
  {
    "path": "packages/drools-lsp/package.yaml",
    "content": "---\nname: drools-lsp\ndescription: An implementation of a language server for the Drools Rule Language.\nhomepage: https://github.com/kiegroup/drools-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Drools\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/kiegroup/drools-lsp@latest\n  asset:\n    file: drools-lsp-server-jar-with-dependencies.jar\n\nshare:\n  drools-lsp/drools-lsp-server-jar-with-dependencies.jar: drools-lsp-server-jar-with-dependencies.jar\n\n# This server is not yet migrated to vim.lsp.config in nvim-lspconfig\n# neovim:\n#   lspconfig: drools_lsp\n"
  },
  {
    "path": "packages/duster/package.yaml",
    "content": "---\nname: duster\ndescription: Automatic configuration for Laravel apps to apply Tighten's standard linting & code standards.\nhomepage: https://github.com/tighten/duster\nlicenses:\n  - MIT\nlanguages:\n  - PHP\n  - Blade\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:composer/tightenco/duster@v3.4.2\n\nbin:\n  duster: composer:duster\n"
  },
  {
    "path": "packages/earthlyls/package.yaml",
    "content": "---\nname: earthlyls\ndescription: |\n  A fast language server for earthly.\nhomepage: https://github.com/glehmann/earthlyls\nlicenses:\n  - MIT\nlanguages:\n  - Earthly\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/glehmann/earthlyls@0.5.5\n  asset:\n    - target: linux_x64\n      file: earthlyls-{{ version }}-linux-amd64.tar.gz\n      bin: earthlyls-{{ version }}-linux-amd64/earthlyls\n    - target: linux_arm64\n      file: earthlyls-{{ version }}-linux-arm64.tar.gz\n      bin: earthlyls-{{ version }}-linux-arm64/earthlyls\n    - target: darwin_x64\n      file: earthlyls-{{ version }}-macos-amd64.tar.gz\n      bin: earthlyls-{{ version }}-macos-amd64/earthlyls\n    - target: darwin_arm64\n      file: earthlyls-{{ version }}-macos-arm64.tar.gz\n      bin: earthlyls-{{ version }}-macos-arm64/earthlyls\n    - target: win_x64\n      file: earthlyls-{{ version }}-windows-amd64.zip\n      bin: earthlyls-{{ version }}-windows-amd64/earthlyls.exe\n\nbin:\n  earthlyls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: earthlyls\n"
  },
  {
    "path": "packages/easy-coding-standard/package.yaml",
    "content": "---\nname: easy-coding-standard\ndescription: Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer.\nhomepage: https://github.com/easy-coding-standard/easy-coding-standard\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:composer/symplify/easy-coding-standard@13.0.4\n\nbin:\n  ecs: composer:ecs\n\nci_skip:\n  # freezes on Windows CI for some reason\n  - win_x64\n"
  },
  {
    "path": "packages/editorconfig-checker/package.yaml",
    "content": "---\nname: editorconfig-checker\ndescription: A tool to verify that your files are in harmony with your `.editorconfig`.\nhomepage: https://github.com/editorconfig-checker/editorconfig-checker\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/editorconfig-checker/editorconfig-checker@v3.6.1\n  asset:\n    - target: darwin_arm64\n      file: ec-darwin-arm64.tar.gz\n      bin: bin/ec-darwin-arm64\n    - target: darwin_x64\n      file: ec-darwin-amd64.tar.gz\n      bin: bin/ec-darwin-amd64\n    - target: linux_x64_openbsd\n      file: ec-openbsd-amd64.tar.gz\n      bin: bin/ec-openbsd-amd64\n    - target: linux_arm64_openbsd\n      file: ec-openbsd-arm64.tar.gz\n      bin: bin/ec-openbsd-arm64\n    - target: linux_arm64\n      file: ec-linux-arm64.tar.gz\n      bin: bin/ec-linux-arm64\n    - target: linux_x64\n      file: ec-linux-amd64.tar.gz\n      bin: bin/ec-linux-amd64\n    - target: win_x86\n      file: ec-windows-386.zip\n      bin: bin/ec-windows-386.exe\n    - target: win_x64\n      file: ec-windows-amd64.zip\n      bin: bin/ec-windows-amd64.exe\n    - target: win_arm64\n      file: ec-windows-arm64.zip\n      bin: bin/ec-windows-arm64.exe\n\n  version_overrides:\n    - constraint: semver:<=v3.0.3\n      id: pkg:github/editorconfig-checker/editorconfig-checker@v3.0.3\n      asset:\n        - target: darwin_arm64\n          file: ec-darwin-arm64.tar.gz\n          bin: bin/ec-darwin-arm64\n        - target: darwin_x64\n          file: ec-darwin-amd64.tar.gz\n          bin: bin/ec-darwin-amd64\n        - target: linux_x64_openbsd\n          file: ec-openbsd-amd64.tar.gz\n          bin: bin/ec-openbsd-amd64\n        - target: linux_arm64_openbsd\n          file: ec-openbsd-arm64.tar.gz\n          bin: bin/ec-openbsd-arm64\n        - target: linux_arm64\n          file: ec-linux-arm64.tar.gz\n          bin: bin/ec-linux-arm64\n        - target: linux_x64\n          file: ec-linux-amd64.tar.gz\n          bin: bin/ec-linux-amd64\n        - target: win_x86\n          file: ec-windows-386.exe.tar.gz\n          bin: bin/ec-windows-386.exe\n        - target: win_x64\n          file: ec-windows-amd64.exe.tar.gz\n          bin: bin/ec-windows-amd64.exe\n        - target: win_arm64\n          file: ec-windows-arm64.exe.tar.gz\n          bin: bin/ec-windows-arm64.exe\n        - target: win_arm\n          file: ec-windows-arm.exe.tar.gz\n          bin: bin/ec-windows-arm.exe\n\nbin:\n  editorconfig-checker: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/efm/package.yaml",
    "content": "---\nname: efm\ndescription: General purpose Language Server.\nhomepage: https://github.com/mattn/efm-langserver\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/mattn/efm-langserver@v0.0.56\n  asset:\n    - target: darwin_x64\n      file: efm-langserver_{{version}}_darwin_amd64.zip\n      bin: efm-langserver_{{version}}_darwin_amd64/efm-langserver\n    - target: darwin_arm64\n      file: efm-langserver_{{version}}_darwin_arm64.zip\n      bin: efm-langserver_{{version}}_darwin_arm64/efm-langserver\n    - target: linux_x64\n      file: efm-langserver_{{version}}_linux_amd64.tar.gz\n      bin: efm-langserver_{{version}}_linux_amd64/efm-langserver\n    - target: linux_arm64\n      file: efm-langserver_{{version}}_linux_arm64.tar.gz\n      bin: efm-langserver_{{version}}_linux_arm64/efm-langserver\n    - target: win_x64\n      file: efm-langserver_{{version}}_windows_amd64.zip\n      bin: efm-langserver_{{version}}_windows_amd64/efm-langserver.exe\n    - target: win_arm64\n      file: efm-langserver_{{version}}_windows_arm64.zip\n      bin: efm-langserver_{{version}}_windows_arm64/efm-langserver.exe\n\nschemas:\n  lsp: https://raw.githubusercontent.com/mattn/efm-langserver/{{version}}/schema.json\n\nbin:\n  efm-langserver: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: efm\n"
  },
  {
    "path": "packages/elixir-ls/package.yaml",
    "content": "---\nname: elixir-ls\ndescription: |\n  A frontend-independent IDE \"smartness\" server for Elixir. Implements the \"Language Server Protocol\" standard and\n  provides debugger support via the \"Debug Adapter Protocol\".\nhomepage: https://github.com/elixir-lsp/elixir-ls\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Elixir\ncategories:\n  - LSP\n  - DAP\n\nsource:\n  id: pkg:github/elixir-lsp/elixir-ls@v0.30.0\n  asset:\n    - target: unix\n      file: elixir-ls-{{version}}.zip\n      bin:\n        lsp: language_server.sh\n        dap: debug_adapter.sh\n    - target: win\n      file: elixir-ls-{{version}}.zip\n      bin:\n        lsp: language_server.bat\n        dap: debug_adapter.bat\n\n  version_overrides:\n    - constraint: semver:<=v0.17.10\n      id: pkg:github/elixir-lsp/elixir-ls@v0.14.6\n      asset:\n        - target: unix\n          file: elixir-ls-{{version}}.zip\n          bin:\n            lsp: language_server.sh\n            dap: debugger.sh\n        - target: win\n          file: elixir-ls-{{version}}.zip\n          bin:\n            lsp: language_server.bat\n            dap: debugger.bat\n\n    - constraint: semver:<=0.14.6\n      id: pkg:github/elixir-lsp/elixir-ls@v0.14.6\n      asset:\n        - target: unix\n          file: elixir-ls.zip\n          bin:\n            lsp: language_server.sh\n            dap: debugger.sh\n        - target: win\n          file: elixir-ls.zip\n          bin:\n            lsp: language_server.bat\n            dap: debugger.bat\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/elixir-lsp/vscode-elixir-ls/master/package.json\n\nbin:\n  elixir-ls: \"{{source.asset.bin.lsp}}\"\n  elixir-ls-debugger: \"{{source.asset.bin.dap}}\"\n\nneovim:\n  lspconfig: elixirls\n"
  },
  {
    "path": "packages/elm-format/package.yaml",
    "content": "---\nname: elm-format\ndescription: |\n  elm-format formats Elm source code according to a standard set of rules based on the official Elm Style Guide\nhomepage: https://github.com/avh4/elm-format\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Elm\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/elm-format@0.8.8\n\nbin:\n  elm-format: npm:elm-format\n"
  },
  {
    "path": "packages/elm-language-server/package.yaml",
    "content": "---\nname: elm-language-server\ndescription: Language server implementation for Elm.\nhomepage: https://github.com/elm-tooling/elm-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Elm\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40elm-tooling/elm-language-server@2.8.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/elm-tooling/elm-language-client-vscode/master/package.json\n\nbin:\n  elm-language-server: npm:elm-language-server\n\nneovim:\n  lspconfig: elmls\n"
  },
  {
    "path": "packages/elp/package.yaml",
    "content": "---\nname: elp\ndescription: |\n  ELP integrates Erlang into modern IDEs via the language server protocol.\nhomepage: https://github.com/WhatsApp/erlang-language-platform\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Erlang\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/WhatsApp/erlang-language-platform@2026-02-27\n  asset:\n    - target: linux_x64_gnu\n      file: elp-linux-x86_64-unknown-linux-gnu-otp-27.3.tar.gz\n      bin: elp\n    - target: linux_arm64_gnu\n      file: elp-linux-aarch64-unknown-linux-gnu-otp-27.3.tar.gz\n      bin: elp\n    - target: darwin_x64\n      file: elp-macos-x86_64-apple-darwin-otp-27.3.tar.gz\n      bin: elp\n    - target: darwin_arm64\n      file: elp-macos-aarch64-apple-darwin-otp-27.3.tar.gz\n      bin: elp\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/WhatsApp/erlang-language-platform/{{version}}/editors/code/package.json\n\nbin:\n  elp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: elp\n"
  },
  {
    "path": "packages/ember-language-server/package.yaml",
    "content": "---\nname: ember-language-server\ndescription: Language Server Protocol implementation for Ember.js and Glimmer projects.\nhomepage: https://github.com/ember-tooling/ember-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Ember\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40ember-tooling/ember-language-server@2.30.9\n\nbin:\n  ember-language-server: npm:ember-language-server\n\nneovim:\n  lspconfig: ember\n"
  },
  {
    "path": "packages/emmet-language-server/package.yaml",
    "content": "---\nname: emmet-language-server\ndescription: A language server for emmet.io.\nhomepage: https://github.com/olrtg/emmet-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Emmet\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/@olrtg/emmet-language-server@2.8.0\n\nbin:\n  emmet-language-server: npm:emmet-language-server\n\nneovim:\n  lspconfig: emmet_language_server\n"
  },
  {
    "path": "packages/emmet-ls/package.yaml",
    "content": "---\nname: emmet-ls\ndescription: Emmet support based on LSP.\nhomepage: https://github.com/aca/emmet-ls\nlicenses:\n  - MIT\nlanguages:\n  - Emmet\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/emmet-ls@0.4.2\n\nbin:\n  emmet-ls: npm:emmet-ls\n\nneovim:\n  lspconfig: emmet_ls\n"
  },
  {
    "path": "packages/emmylua-codeformat/package.yaml",
    "content": "---\nname: emmylua-codeformat\ndescription: |\n  Fast, powerful, and feature-rich Lua formatting and checking tool. \n  This tool is already bundled with lua_ls, so you don’t need it if you’re using lua_ls.\nhomepage: https://github.com/CppCXY/EmmyLuaCodeStyle\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/CppCXY/EmmyLuaCodeStyle@1.6.0\n  asset:\n    - target: darwin_arm64\n      file: darwin-arm64.tar.gz\n      bin: darwin-arm64/bin/CodeFormat\n    - target: darwin_x64\n      file: darwin-x64.tar.gz\n      bin: darwin-x64/bin/CodeFormat\n    - target: linux_arm64_gnu\n      file: linux-aarch64.tar.gz\n      bin: linux-aarch64/bin/CodeFormat\n    - target: linux_x64_gnu\n      file: linux-x64.tar.gz\n      bin: linux-x64/bin/CodeFormat\n    - target: win_x64\n      file: win32-x64.zip\n      bin: win32-x64/bin/CodeFormat.exe\n\nbin:\n  emmylua-codeformat: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/emmylua_ls/package.yaml",
    "content": "---\nname: emmylua_ls\ndescription: The language server for Lua, offering extensive features for different Lua versions.\nhomepage: https://github.com/CppCXY/emmylua-analyzer-rust/tree/main/crates/emmylua_ls\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/CppCXY/emmylua-analyzer-rust@0.21.0\n  asset:\n    - target: darwin_arm64\n      file: emmylua_ls-darwin-arm64.tar.gz\n      bin: emmylua_ls\n    - target: darwin_x64\n      file: emmylua_ls-darwin-x64.tar.gz\n      bin: emmylua_ls\n    - target: linux_arm64_gnu\n      file: emmylua_ls-linux-aarch64-glibc.2.17.tar.gz\n      bin: emmylua_ls\n    - target: linux_x64_musl\n      file: emmylua_ls-linux-musl.tar.gz\n      bin: emmylua_ls\n    - target: linux_x64_gnu\n      file: emmylua_ls-linux-x64-glibc.2.17.tar.gz\n      bin: emmylua_ls\n    - target: linux_x64_gnu\n      file: emmylua_ls-linux-x64.tar.gz\n      bin: emmylua_ls\n    - target: win_arm64\n      file: emmylua_ls-win32-arm64.zip\n      bin: emmylua_ls.exe\n    - target: win_x86\n      file: emmylua_ls-win32-ia32.zip\n      bin: emmylua_ls.exe\n    - target: win_x64\n      file: emmylua_ls-win32-x64.zip\n      bin: emmylua_ls.exe\n\nbin:\n  emmylua_ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: emmylua_ls\n"
  },
  {
    "path": "packages/erb-formatter/package.yaml",
    "content": "---\nname: erb-formatter\ndescription: Format ERB files with speed and precision.\nhomepage: https://github.com/nebulab/erb-formatter\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - Ruby\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:gem/erb-formatter@0.7.3\n\nbin:\n  erb-format: gem:erb-format\n"
  },
  {
    "path": "packages/erb-lint/package.yaml",
    "content": "---\nname: erb-lint\ndescription: erb-lint is a tool to help lint your ERB or HTML files using the included linters or by writing your own.\nhomepage: https://github.com/Shopify/erb-lint\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - Ruby\ncategories:\n  - Linter\n\nsource:\n  id: pkg:gem/erb_lint@0.9.0\n\nbin:\n  erblint: gem:erblint\n"
  },
  {
    "path": "packages/erg/package.yaml",
    "content": "---\nname: erg\ndescription: A statically typed language that can deeply improve the Python ecosystem.\nhomepage: https://github.com/erg-lang/erg\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Erg\ncategories:\n  - Compiler\n  - LSP\n\nsource:\n  id: pkg:github/erg-lang/erg@v0.6.53\n  asset:\n    - target: darwin_x64\n      file: erg-x86_64-apple-darwin.tar.gz\n      bin: erg\n    - target: darwin_arm64\n      file: erg-aarch64-apple-darwin.tar.gz\n      bin: erg\n    - target: linux_x64_gnu\n      file: erg-x86_64-unknown-linux-gnu.tar.gz\n      bin: erg\n    - target: win_x64\n      file: erg-x86_64-pc-windows-msvc.zip\n      bin: erg.exe\n\nbin:\n  erg: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/erg-language-server/package.yaml",
    "content": "---\nname: erg-language-server\ndescription: ELS is a language server for the Erg programing language.\nhomepage: https://github.com/erg-lang/erg-language-server\nlicenses:\n  - MIT\n  - Apache-2.0\nlanguages:\n  - Erg\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/erg-lang/erg-language-server@v0.1.12\n  asset:\n    - target: darwin_x64\n      file: els-x86_64-apple-darwin.tar.gz\n      bin: els\n    - target: darwin_arm64\n      file: els-aarch64-apple-darwin.tar.gz\n      bin: els\n    - target: linux_x64_gnu\n      file: els-x86_64-unknown-linux-gnu.tar.gz\n      bin: els\n    - target: win_x64\n      file: els-x86_64-pc-windows-msvc.zip\n      bin: els.exe\n\nbin:\n  els: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: erg_language_server\n"
  },
  {
    "path": "packages/erlang-debugger/package.yaml",
    "content": "---\nname: erlang-debugger\ndescription: |\n  Step by step debugger for Erlang, powered by the Erlang/OTP interpreter and following the DAP protocol.\nhomepage: https://erlang-ls.github.io/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Erlang\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/erlang-ls/els_dap@0.2.0\n  build:\n    - target: win\n      run: |\n        rebar3 escriptize\n      els_dap: _build/default/bin/els_dap.cmd\n    - target: unix\n      run: |\n        </dev/null rebar3 escriptize\n      els_dap: _build/default/bin/els_dap\n\nbin:\n  els_dap: \"{{source.build.els_dap}}\"\n"
  },
  {
    "path": "packages/erlang-ls/package.yaml",
    "content": "---\nname: erlang-ls\ndescription: |\n  Erlang LS is a language server providing language features for the Erlang programming language. The server works with\n  Emacs, VSCode, Sublime Text 3, Vim and probably many more text editors and IDE which adhere to the LSP protocol.\nhomepage: https://erlang-ls.github.io/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Erlang\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/erlang-ls/erlang_ls@1.1.0\n  build:\n    - target: win\n      run: |\n        rebar3 escriptize\n      erlang_ls: _build/default/bin/erlang_ls.cmd\n    - target: unix\n      run: |\n        </dev/null rebar3 escriptize\n      erlang_ls: _build/default/bin/erlang_ls\n\nbin:\n  erlang_ls: \"{{source.build.erlang_ls}}\"\n\nneovim:\n  lspconfig: erlangls\n"
  },
  {
    "path": "packages/esbonio/package.yaml",
    "content": "---\nname: esbonio\ndescription: A Language Server for Sphinx projects.\nhomepage: https://pypi.org/project/esbonio/\nlicenses:\n  - MIT\nlanguages:\n  - Sphinx\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/esbonio@2.0.0\n\nbin:\n  esbonio: pypi:esbonio\n\nneovim:\n  lspconfig: esbonio\n"
  },
  {
    "path": "packages/eslint-lsp/package.yaml",
    "content": "---\nname: eslint-lsp\ndescription: |\n  Language Server Protocol implementation for ESLint. The server uses the ESLint library installed in the opened\n  workspace folder. If the folder doesn't provide one the extension looks for a global install version.\nhomepage: https://github.com/Microsoft/vscode-eslint\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vscode-langservers-extracted@4.10.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode-eslint/main/package.json\n\nbin:\n  vscode-eslint-language-server: npm:vscode-eslint-language-server\n\nneovim:\n  lspconfig: eslint\n"
  },
  {
    "path": "packages/eslint_d/package.yaml",
    "content": "---\nname: eslint_d\ndescription: Makes eslint the fastest linter on the planet.\nhomepage: https://github.com/mantoni/eslint_d.js/\nlicenses:\n  - MIT\nlanguages:\n  - TypeScript\n  - JavaScript\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/eslint_d@15.0.2\n\nbin:\n  eslint_d: npm:eslint_d\n"
  },
  {
    "path": "packages/eugene/package.yaml",
    "content": "---\nname: eugene\ndescription: Helps you write zero downtime schema migrations for postgres.\nhomepage: https://github.com/kaaveland/eugene\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/kaaveland/eugene@0.8.3\n  asset:\n    - target: linux_x64\n      file: eugene-x86_64-unknown-linux-musl\n    - target: linux_arm64\n      file: eugene-aarch64-unknown-linux-musl\n    - target: darwin_x64\n      file: eugene-x86_64-apple-darwin\n    - target: darwin_arm64\n      file: eugene-aarch64-apple-darwin\n\nbin:\n  eugene: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/expert/package.yaml",
    "content": "---\nname: expert\ndescription: Expert is the official language server implementation for the Elixir programming language.\nhomepage: https://github.com/elixir-lang/expert\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Elixir\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/elixir-lang/expert@v0.1.2\n  asset:\n    - target: darwin_x64\n      file: expert_darwin_amd64\n      bin: expert_darwin_amd64\n    - target: darwin_arm64\n      file: expert_darwin_arm64\n      bin: expert_darwin_arm64\n    - target: linux_x64_gnu\n      file: expert_linux_amd64\n      bin: expert_linux_amd64\n    - target: linux_arm64_gnu\n      file: expert_linux_arm64\n      bin: expert_linux_arm64\n    - target: win_x64\n      file: expert_windows_amd64.exe\n      bin: expert_windows_amd64.exe\n\n\nbin:\n  expert: \"{{source.asset.bin}}\"\n\n\nneovim:\n  lspconfig: expert\n"
  },
  {
    "path": "packages/facility-language-server/package.yaml",
    "content": "---\nname: facility-language-server\ndescription: |\n  Facility Service Definition language. This version of Facility Service Definition\n  requires dotnet (.NET 6.0) to be installed.\nhomepage: https://facilityapi.github.io/\nlicenses:\n  - MIT\nlanguages:\n  - Facility Service Definition\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/FacilityApi/FacilityLanguageServer@v2.5.1\n  asset:\n    file: Facility.LanguageServer.zip:libexec/\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/FacilityApi/FacilityVSCode/master/package.json\n\nbin:\n  facility-language-server: dotnet:libexec/Facility.LanguageServer.dll\n\nneovim:\n  lspconfig: facility_language_server\n"
  },
  {
    "path": "packages/fantomas/package.yaml",
    "content": "---\nname: fantomas\ndescription: Fantomas is an opinionated code formatter for F#.\nhomepage: https://fsprojects.github.io/fantomas\nlicenses:\n  - Apache-2.0\nlanguages:\n  - F#\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:nuget/fantomas@7.0.5\n\nbin:\n  fantomas: nuget:fantomas\n"
  },
  {
    "path": "packages/fennel-language-server/package.yaml",
    "content": "---\nname: fennel-language-server\ndescription: Fennel language server protocol (LSP) support.\nhomepage: https://github.com/rydesun/fennel-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Fennel\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/fennel-language-server@59005549ca1191bf2aa364391e6bf2371889b4f8?repository_url=https://github.com/rydesun/fennel-language-server&rev=true\n\nbin:\n  fennel-language-server: cargo:fennel-language-server\n\nneovim:\n  lspconfig: fennel_language_server\n"
  },
  {
    "path": "packages/fennel-ls/package.yaml",
    "content": "---\nname: fennel-ls\ndescription: Language Server for Fennel\nhomepage: https://git.sr.ht/~xerool/fennel-ls\nlicenses:\n  - MIT\nlanguages:\n  - Fennel\ncategories:\n  - LSP\n\nsource:\n  id: pkg:luarocks/fennel-ls@0.2.1-1\n\nbin:\n  fennel-ls: luarocks:fennel-ls\n\nneovim:\n  lspconfig: fennel_ls\n\nci_skip:\n  # Per xerool, the author of fennel-ls:\n  #\n  #     Eventually they'll .. create a PR for bumping fennel-ls, and when that PR's CI inevitably fails,\n  #     we'll have to convince them that it's okay to be broken in windows.\n  #\n  # See: https://todo.sr.ht/~xerool/fennel-ls/54#event-419872\n  #\n  - win_x64\n"
  },
  {
    "path": "packages/findent/package.yaml",
    "content": "---\nname: findent\ndescription: findent indents/beautifies/converts and can optionally generate the dependencies of Fortran sources.\nhomepage: https://pypi.org/project/findent/\nlicenses:\n  - BSD-2-Clause\nlanguages:\n  - Fortran\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/findent@4.3.6\n\nbin:\n  findent: pypi:findent\n"
  },
  {
    "path": "packages/firefox-debug-adapter/package.yaml",
    "content": "---\nname: firefox-debug-adapter\ndescription: Debug your web application or browser extension in Firefox.\nhomepage: https://github.com/firefox-devtools/vscode-firefox-debug\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - DAP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/firefox-devtools/vscode-firefox-debug@2.15.0\n  build:\n    run: |\n      npm install\n      npm run build\n      npm install --production\n\nbin:\n  firefox-debug-adapter: node:dist/adapter.bundle.js\n"
  },
  {
    "path": "packages/fish-lsp/package.yaml",
    "content": "---\nname: fish-lsp\ndescription: LSP implementation for the fish shell language\nhomepage: https://github.com/ndonfris/fish-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Fish\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/fish-lsp@1.1.3\n\nbin:\n  fish-lsp: npm:fish-lsp\n\nneovim:\n  lspconfig: fish_lsp\n"
  },
  {
    "path": "packages/fixjson/package.yaml",
    "content": "---\nname: fixjson\ndescription: A JSON file fixer/formatter for humans using (relaxed) JSON5.\nhomepage: https://github.com/rhysd/fixjson\nlicenses:\n  - MIT\nlanguages:\n  - JSON\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/fixjson@1.1.2\n\nbin:\n  fixjson: npm:fixjson\n"
  },
  {
    "path": "packages/flake8/package.yaml",
    "content": "---\nname: flake8\ndescription: |\n  flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style\n  and quality of some Python code.\nhomepage: https://github.com/PyCQA/flake8\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/flake8@7.3.0\n\nbin:\n  flake8: pypi:flake8\n"
  },
  {
    "path": "packages/flakeheaven/package.yaml",
    "content": "---\nname: flakeheaven\ndescription: |\n  flakeheaven is a python linter built around flake8 to enable inheritable and complex toml configuration.\nhomepage: https://github.com/flakeheaven/flakeheaven\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/flakeheaven@3.3.0\n\nbin:\n  flakeheaven: pypi:flakeheaven\n"
  },
  {
    "path": "packages/flux-lsp/package.yaml",
    "content": "---\nname: flux-lsp\ndescription: Implementation of Language Server Protocol for the Flux language.\nhomepage: https://github.com/influxdata/flux-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Flux\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/flux-lsp@0.8.40?repository_url=https://github.com/influxdata/flux-lsp\n  supported_platforms:\n    - unix\n\nbin:\n  flux-lsp: cargo:flux-lsp\n\nneovim:\n  lspconfig: flux_lsp\n"
  },
  {
    "path": "packages/foam-language-server/package.yaml",
    "content": "---\nname: foam-language-server\ndescription: A language server for OpenFOAM case files.\nhomepage: https://github.com/FoamScience/foam-language-server\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - OpenFOAM\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/foam-language-server@0.4.6\n\nbin:\n  foam-ls: npm:foam-ls\n\nneovim:\n  lspconfig: foam_ls\n"
  },
  {
    "path": "packages/fortitude/package.yaml",
    "content": "---\nname: fortitude\ndescription: Fortran linter, written in Rust.\nhomepage: https://github.com/PlasmaFAIR/fortitude\nlicenses:\n  - MIT\nlanguages:\n  - Fortran\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/PlasmaFAIR/fortitude@v0.8.0\n  asset:\n    - target: darwin_arm64\n      file: fortitude-aarch64-apple-darwin.tar.gz\n      bin: fortitude-aarch64-apple-darwin/fortitude\n    - target: darwin_x64\n      file: fortitude-x86_64-apple-darwin.tar.gz\n      bin: fortitude-x86_64-apple-darwin/fortitude\n    - target: linux_arm64\n      file: fortitude-aarch64-unknown-linux-musl.tar.gz\n      bin: fortitude-aarch64-unknown-linux-musl/fortitude\n    - target: linux_x64\n      file: fortitude-x86_64-unknown-linux-musl.tar.gz\n      bin: fortitude-x86_64-unknown-linux-musl/fortitude\n    - target: linux_x86\n      file: fortitude-i686-unknown-linux-musl.tar.gz\n      bin: fortitude-i686-unknown-linux-musl/fortitude\n    - target: linux_arm64_gnu\n      file: fortitude-aarch64-unknown-linux-gnu.tar.gz\n      bin: fortitude-aarch64-unknown-linux-gnu/fortitude\n    - target: linux_x64_gnu\n      file: fortitude-x86_64-unknown-linux-gnu.tar.gz\n      bin: fortitude-x86_64-unknown-linux-gnu/fortitude\n    - target: linux_x86_gnu\n      file: fortitude-i686-unknown-linux-gnu.tar.gz\n      bin: fortitude-i686-unknown-linux-gnu/fortitude\n    - target: win_arm64\n      file: fortitude-aarch64-pc-windows-msvc.zip\n      bin: fortitude.exe\n    - target: win_x64\n      file: fortitude-x86_64-pc-windows-msvc.zip\n      bin: fortitude.exe\n    - target: win_x86\n      file: fortitude-i686-pc-windows-msvc.zip\n      bin: fortitude.exe\n\nbin:\n  fortitude: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: fortitude\n"
  },
  {
    "path": "packages/fortls/package.yaml",
    "content": "---\nname: fortls\ndescription: fortls - Fortran Language Server.\nhomepage: https://github.com/gnikit/fortls\nlicenses:\n  - MIT\nlanguages:\n  - Fortran\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/fortls@3.2.2\n\nbin:\n  fortls: pypi:fortls\n\nneovim:\n  lspconfig: fortls\n"
  },
  {
    "path": "packages/fourmolu/package.yaml",
    "content": "---\nname: fourmolu\ndescription: A fork of Ormolu that uses four space indentation and allows arbitrary configuration.\nhomepage: https://hackage.haskell.org/package/fourmolu\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Haskell\ncategories:\n  - Formatter\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/fourmolu/fourmolu@v0.19.0.1\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: fourmolu-{{ version | strip_prefix \"v\" }}-osx-x86_64\n    - target: linux_x64_gnu\n      file: fourmolu-{{ version | strip_prefix \"v\" }}-linux-x86_64\n\nbin:\n  fourmolu: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/fprettify/package.yaml",
    "content": "---\nname: fprettify\ndescription: fprettify is an auto-formatter for modern Fortran code that imposes strict whitespace formatting, written in Python.\nhomepage: https://pypi.org/project/fprettify\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Fortran\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/fprettify@0.3.7\n\nbin:\n  fprettify: pypi:fprettify\n"
  },
  {
    "path": "packages/fsautocomplete/package.yaml",
    "content": "---\nname: fsautocomplete\ndescription: F# language server using Language Server Protocol.\nhomepage: https://github.com/fsharp/FsAutoComplete\nlicenses:\n  - Apache-2.0\nlanguages:\n  - F#\ncategories:\n  - LSP\n\nsource:\n  id: pkg:nuget/fsautocomplete@0.83.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/ionide/ionide-vscode-fsharp/main/release/package.json\n\nbin:\n  fsautocomplete: nuget:fsautocomplete\n\nneovim:\n  lspconfig: fsautocomplete\n"
  },
  {
    "path": "packages/gci/package.yaml",
    "content": "---\nname: gci\ndescription: |\n  GCI, a tool that control golang package import order and make it always deterministic.\nhomepage: https://pkg.go.dev/github.com/daixiang0/gci\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/daixiang0/gci@v0.14.0\n\nbin:\n  gci: golang:gci\n"
  },
  {
    "path": "packages/gdscript-formatter/package.yaml",
    "content": "---\nname: gdscript-formatter\ndescription: |\n  A faster code formatter for GDScript and Godot 4.\nhomepage: https://www.gdquest.com/library/gdscript_formatter\nlicenses:\n  - MIT\nlanguages:\n  - GDScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/GDQuest/GDScript-formatter@0.19.0\n  asset:\n    - target: darwin_x64\n      file: gdscript-formatter-{{ version }}-macos-x86_64.zip \n      bin: gdscript-formatter-{{ version }}-macos-x86_64\n    - target: darwin_arm64\n      file: gdscript-formatter-{{ version }}-macos-aarch64.zip\n      bin: gdscript-formatter-{{ version }}-macos-aarch64\n    - target: linux_x64\n      file: gdscript-formatter-{{ version }}-linux-x86_64.zip\n      bin: gdscript-formatter-{{ version }}-linux-x86_64\n    - target: linux_arm64\n      file: gdscript-formatter-{{ version }}-linux-aarch64.zip\n      bin: gdscript-formatter-{{ version }}-linux-aarch64\n    - target: win_x64\n      file: gdscript-formatter-{{ version }}-windows-x86_64.exe.zip\n      bin: gdscript-formatter-{{ version }}-windows-x86_64.exe\n    - target: win_arm64\n      file: gdscript-formatter-{{ version }}-windows-aarch64.exe.zip\n      bin: gdscript-formatter-{{ version }}-windows-aarch64.exe\n\nbin:\n  gdscript-formatter: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/gdtoolkit/package.yaml",
    "content": "---\nname: gdtoolkit\ndescription: A set of tools for daily work with GDScript.\nhomepage: https://github.com/Scony/godot-gdscript-toolkit\nlicenses:\n  - MIT\nlanguages:\n  - GDScript\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:pypi/gdtoolkit@4.5.0\n\nbin:\n  gdlint: pypi:gdlint\n  gdformat: pypi:gdformat\n"
  },
  {
    "path": "packages/gersemi/package.yaml",
    "content": "---\nname: gersemi\ndescription: gersemi - A formatter to make your CMake code the real treasure.\nhomepage: https://github.com/BlankSpruce/gersemi\nlicenses:\n  - MPL-2.0\nlanguages:\n  - CMake\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/gersemi@0.27.2\n\nbin:\n  gersemi: pypi:gersemi\n"
  },
  {
    "path": "packages/gh/package.yaml",
    "content": "---\nname: gh\ndescription: |\n  gh is GitHub on the command line. It brings pull requests, issues, and other GitHub concepts to the terminal next to\n  where you are already working with git and your code.\nhomepage: https://cli.github.com\nlicenses:\n  - MIT\nlanguages: []\ncategories: []\n\nsource:\n  id: pkg:github/cli/cli@v2.91.0\n  asset:\n    - target: darwin_x64\n      file: gh_{{ version | strip_prefix \"v\" }}_macOS_amd64.zip\n      bin: gh_{{ version | strip_prefix \"v\" }}_macOS_amd64/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_macOS_amd64/share/man/\n    - target: darwin_arm64\n      file: gh_{{ version | strip_prefix \"v\" }}_macOS_arm64.zip\n      bin: gh_{{ version | strip_prefix \"v\" }}_macOS_arm64/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_macOS_arm64/share/man/\n    - target: linux_x64\n      file: gh_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin: gh_{{ version | strip_prefix \"v\" }}_linux_amd64/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_linux_amd64/share/man/\n    - target: linux_x86\n      file: gh_{{ version | strip_prefix \"v\" }}_linux_386.tar.gz\n      bin: gh_{{ version | strip_prefix \"v\" }}_linux_386/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_linux_386/share/man/\n    - target: linux_arm64\n      file: gh_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: gh_{{ version | strip_prefix \"v\" }}_linux_arm64/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_linux_arm64/share/man/\n    - target: linux_arm\n      file: gh_{{ version | strip_prefix \"v\" }}_linux_armv6.tar.gz\n      bin: gh_{{ version | strip_prefix \"v\" }}_linux_armv6/bin/gh\n      man: gh_{{ version | strip_prefix \"v\" }}_linux_armv6/share/man/\n    - target: win_x64\n      file: gh_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: bin/gh.exe\n    - target: win_x86\n      file: gh_{{ version | strip_prefix \"v\" }}_windows_386.zip\n      bin: bin/gh.exe\n    - target: win_arm64\n      file: gh_{{ version | strip_prefix \"v\" }}_windows_arm64.zip\n      bin: bin/gh.exe\n\nbin:\n  gh: \"{{source.asset.bin}}\"\n\nshare:\n  man/: \"{{source.asset.man}}\"\n"
  },
  {
    "path": "packages/gh-actions-language-server/package.yaml",
    "content": "---\nname: gh-actions-language-server\ndescription: GitHub Actions Language Server\nhomepage: https://github.com/actions/languageservices\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40actions/languageserver@0.3.54\n\nbin:\n  # gh-actions-language-server is the old executable name from the previous 3rd party distribution.\n  # It's retained for now to avoid breaking configurations.\n  gh-actions-language-server: npm:actions-languageserver\n  actions-languageserver: npm:actions-languageserver\n\nneovim:\n  lspconfig: gh_actions_ls\n"
  },
  {
    "path": "packages/ginko_ls/package.yaml",
    "content": "---\nname: ginko_ls\ndescription: |\n  ginko_ls is meant to be a feature-complete language server for device-trees. Language servers can be used in many\n  editors, such as Visual Studio Code, Emacs or Vim\nhomepage: https://github.com/Schottkyc137/ginko\nlicenses:\n  - MIT\nlanguages:\n  - DTS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/Schottkyc137/ginko@v0.0.8\n  asset:\n    - target: darwin_arm64\n      file: ginko_ls-aarch64-apple-darwin.zip\n      bin: ginko_ls-aarch64-apple-darwin/bin/ginko_ls\n    - target: linux_x64_gnu\n      file: ginko_ls-x86_64-unknown-linux-gnu.zip\n      bin: ginko_ls-x86_64-unknown-linux-gnu/bin/ginko_ls\n    - target: win_x64\n      file: ginko_ls-x86_64-pc-windows-msvc.zip\n      bin: ginko_ls-x86_64-pc-windows-msvc/bin/ginko_ls.exe\n\nbin:\n  ginko_ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: ginko_ls\n"
  },
  {
    "path": "packages/gitlab-ci-ls/package.yaml",
    "content": "---\nname: gitlab-ci-ls\ndescription: An experimental language server for Gitlab CI.\nhomepage: https://github.com/alesbrelih/gitlab-ci-ls\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/gitlab-ci-ls@1.3.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/alesbrelih/gitlab-ci-ls/{{version}}/vscode-extension/package.json\n\nbin:\n  gitlab-ci-ls: cargo:gitlab-ci-ls\n\nneovim:\n  lspconfig: gitlab_ci_ls\n"
  },
  {
    "path": "packages/gitleaks/package.yaml",
    "content": "---\nname: gitleaks\ndescription: Gitleaks helps you protect and discover secrets in git repositories.\nhomepage: https://github.com/gitleaks/gitleaks\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/gitleaks/gitleaks@v8.30.1\n  asset:\n    - target: darwin_arm64\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: gitleaks\n    - target: darwin_x64\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_darwin_x64.tar.gz\n      bin: gitleaks\n    - target: linux_arm64\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: gitleaks\n    - target: linux_armv6l\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_linux_armv6.tar.gz\n      bin: gitleaks\n    - target: linux_armv7l\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_linux_amrv7.tar.gz\n      bin: gitleaks\n    - target: linux_x86\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_linux_x32.tar.gz\n      bin: gitleaks\n    - target: linux_x64\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_linux_x64.tar.gz\n      bin: gitleaks\n    - target: win_armv6l\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_windows_armv6.zip\n      bin: gitleaks\n    - target: win_armv7l\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_windows_armv7.zip\n      bin: gitleaks\n    - target: win_x86\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_windows_x32.zip\n      bin: gitleaks.exe\n    - target: win_x64\n      file: gitleaks_{{ version | strip_prefix \"v\" }}_windows_x64.zip\n      bin: gitleaks.exe\n\nbin:\n  gitleaks: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/gitlint/package.yaml",
    "content": "---\nname: gitlint\ndescription: \"Gitlint is a git commit message linter written in Python: it checks your commit messages for style.\"\nhomepage: https://jorisroovers.com/gitlint/\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/gitlint@0.19.1\n\nbin:\n  gitlint: pypi:gitlint\n"
  },
  {
    "path": "packages/gitui/package.yaml",
    "content": "---\nname: gitui\ndescription: Blazing fast terminal-ui for git written in Rust.\nhomepage: https://github.com/extrawurst/gitui\nlicenses:\n  - MIT\nlanguages: []\ncategories: []\n\nsource:\n  id: pkg:github/extrawurst/gitui@v0.28.1\n  asset:\n    - target: darwin_arm64\n      file: gitui-mac.tar.gz\n      bin: gitui\n    - target: darwin_x64\n      file: gitui-mac-x86.tar.gz\n      bin: gitui\n    - target: linux_x64\n      file: gitui-linux-x86_64.tar.gz\n      bin: gitui\n    - target: linux_arm64\n      file: gitui-linux-aarch64.tar.gz\n      bin: gitui\n    - target: linux_arm\n      file: gitui-linux-arm.tar.gz\n      bin: gitui\n    - target: win_x64\n      file: gitui-win.tar.gz\n      bin: gitui.exe\n\n  version_overrides:\n    - constraint: semver:<=v0.26.2\n      id: pkg:github/extrawurst/gitui@v0.26.2\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: gitui-mac.tar.gz\n          bin: gitui\n        - target: linux_x64\n          file: gitui-linux-x86_64.tar.gz\n          bin: gitui\n        - target: linux_arm64\n          file: gitui-linux-aarch64.tar.gz\n          bin: gitui\n        - target: linux_arm\n          file: gitui-linux-arm.tar.gz\n          bin: gitui\n        - target: win_x64\n          file: gitui-win.tar.gz\n          bin: gitui.exe\n\n    - constraint: semver:<=v0.25.2\n      id: pkg:github/extrawurst/gitui@v0.25.2\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: gitui-mac.tar.gz\n          bin: gitui\n        - target: linux_x64\n          file: gitui-linux-musl.tar.gz\n          bin: gitui\n        - target: linux_arm64\n          file: gitui-linux-aarch64.tar.gz\n          bin: gitui\n        - target: linux_arm\n          file: gitui-linux-arm.tar.gz\n          bin: gitui\n        - target: win_x64\n          file: gitui-win.tar.gz\n          bin: gitui.exe\n\nbin:\n  gitui: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/glint/package.yaml",
    "content": "---\nname: glint\ndescription: |\n  Glint is a set of tools to aid in developing code that uses the Glimmer VM for rendering, such as Ember.js v3.24+ and\n  GlimmerX projects. Similar to Vetur for Vue projects or Svelte Language Tools, Glint consists of a CLI and a language\n  server to provide feedback and enforce correctness both locally during editing and project-wide in CI.\nhomepage: https://typed-ember.gitbook.io/glint/\nlicenses:\n  - MIT\nlanguages:\n  - Handlebars\n  - Glimmer\n  - TypeScript\n  - JavaScript\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:npm/%40glint/core@1.5.2\n  extra_packages:\n    - typescript\n\nbin:\n  glint: npm:glint\n  glint-language-server: npm:glint-language-server\n\nneovim:\n  lspconfig: glint\n"
  },
  {
    "path": "packages/glow/package.yaml",
    "content": "---\nname: glow\ndescription: Render markdown on the CLI, with pizzazz!\nhomepage: https://github.com/charmbracelet/glow\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories: []\n\nsource:\n  id: pkg:github/charmbracelet/glow@v2.1.2\n  asset:\n    - target: darwin_arm64\n      file: glow_{{ version | strip_prefix \"v\" }}_Darwin_arm64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Darwin_arm64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Darwin_arm64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Darwin_arm64/completions/\n\n    - target: darwin_x64\n      file: glow_{{ version | strip_prefix \"v\" }}_Darwin_x86_64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Darwin_x86_64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Darwin_x86_64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Darwin_x86_64/completions/\n\n    - target: linux_x64_openbsd\n      file: glow_{{ version | strip_prefix \"v\" }}_Openbsd_x86_64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Openbsd_x86_64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Openbsd_x86_64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Openbsd_x86_64/completions/\n\n    - target: linux_arm64_openbsd\n      file: glow_{{ version | strip_prefix \"v\" }}_Openbsd_arm64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Openbsd_arm64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Openbsd_arm64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Openbsd_arm64/completions/\n\n    - target: linux_arm64\n      file: glow_{{ version | strip_prefix \"v\" }}_Linux_arm64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Linux_arm64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Linux_arm64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Linux_arm64/completions/\n\n    - target: linux_x64\n      file: glow_{{ version | strip_prefix \"v\" }}_Linux_x86_64.tar.gz\n      bin: glow_{{ version | strip_prefix \"v\" }}_Linux_x86_64/glow\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Linux_x86_64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Linux_x86_64/completions/\n\n    - target: win_x86\n      file: glow_{{ version | strip_prefix \"v\" }}_Windows_i386.zip\n      bin: glow_{{ version | strip_prefix \"v\" }}_Windows_i386/glow.exe\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Windows_i386/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Windows_i386/completions/\n\n    - target: win_x64\n      file: glow_{{ version | strip_prefix \"v\" }}_Windows_x86_64.zip\n      bin: glow_{{ version | strip_prefix \"v\" }}_Windows_x86_64/glow.exe\n      share:\n        man: glow_{{ version | strip_prefix \"v\" }}_Windows_x86_64/manpages/glow.1.gz\n        completions: glow_{{ version | strip_prefix \"v\" }}_Windows_x86_64/completions/\n\n  version_overrides:\n    - constraint: semver:<=v1.5.1\n      id: pkg:github/charmbracelet/glow@v1.5.1\n      asset:\n        - target: darwin_arm64\n          file: glow_Darwin_arm64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: darwin_x64\n          file: glow_Darwin_x86_64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: linux_x64_openbsd\n          file: glow_Openbsd_x86_64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: linux_arm64_openbsd\n          file: glow_Openbsd_arm64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: linux_arm64\n          file: glow_Linux_arm64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: linux_x64\n          file: glow_Linux_x86_64.tar.gz\n          bin: glow\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: win_x86\n          file: glow_Windows_i386.zip\n          bin: glow.exe\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\n        - target: win_x64\n          file: glow_Windows_x86_64.zip\n          bin: glow.exe\n          share:\n            man: manpages/glow.1.gz\n            completions: completions/\n\nbin:\n  glow: \"{{ source.asset.bin }}\"\n\nshare:\n  man/man1/glow.1.gz: \"{{ source.asset.share.man }}\"\n  bash_completions.d/glow.bash: \"{{ source.asset.share.completions }}glow.bash\"\n  fish-completions/glow.fish: \"{{ source.asset.share.completions }}glow.fish\"\n  zsh-completions/glow.fish: \"{{ source.asset.share.completions }}glow.zsh\"\n"
  },
  {
    "path": "packages/glsl_analyzer/package.yaml",
    "content": "---\nname: glsl_analyzer\ndescription: |\n  Language server for GLSL (autocomplete, goto-definition, formatter, and more)\nhomepage: https://github.com/nolanderc/glsl_analyzer\nlicenses:\n  - GPL-3.0\nlanguages:\n  - OpenGL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/nolanderc/glsl_analyzer@v1.7.1\n  asset:\n    - target: darwin_x64\n      file: x86_64-macos.zip\n      bin: bin/glsl_analyzer\n    - target: darwin_arm64\n      file: aarch64-macos.zip\n      bin: bin/glsl_analyzer\n    - target: linux_x64\n      file: x86_64-linux-musl.zip\n      bin: bin/glsl_analyzer\n    - target: linux_arm64\n      file: aarch64-linux-musl.zip\n      bin: bin/glsl_analyzer\n    - target: win_x64\n      file: x86_64-windows.zip\n      bin: bin/glsl_analyzer.exe\n    - target: win_arm64\n      file: aarch64-windows.zip\n      bin: bin/glsl_analyzer.exe\n\nbin:\n  glsl_analyzer: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: glsl_analyzer\n"
  },
  {
    "path": "packages/glslls/package.yaml",
    "content": "---\nname: glslls\ndescription: Language server implementation for GLSL.\nhomepage: https://github.com/svenstaro/glsl-language-server\nlicenses:\n  - MIT\nlanguages:\n  - GLSL\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/svenstaro/glsl-language-server@0.5.0\n  build:\n    - target: unix\n      run: |\n        git submodule update --init\n        cmake --install-prefix=\"$PWD\" -Bbuild -GNinja\n        ninja -Cbuild\n        ninja -Cbuild install\n      bin: bin/glslls\n    - target: win\n      run: |\n        git submodule update --init\n        cmake --install-prefix=\"($pwd).path\" -Bbuild -GNinja\n        ninja -Cbuild\n        ninja -Cbuild install\n      bin: bin/glslls.exe\n\nbin:\n  glslls: \"{{source.build.bin}}\"\n\nci_skip: true\n\nneovim:\n  lspconfig: glslls\n"
  },
  {
    "path": "packages/gn-language-server/package.yaml",
    "content": "---\nname: gn-language-server\ndescription: A language server for GN, the build configuration language used in Chromium, Fuchsia, and other projects.\nhomepage: https://github.com/google/gn-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - GN\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/google/gn-language-server@v1.14.0\n  asset:\n    - target: darwin_arm64\n      file: gn-language-server-{{ version | strip_prefix \"v\" }}-darwin-aarch64\n    - target: linux_x64\n      file: gn-language-server-{{ version | strip_prefix \"v\" }}-linux-x86_64\n    - target: win_x64\n      file: gn-language-server-{{ version | strip_prefix \"v\" }}-windows-x86_64.exe\n\nbin:\n  gn-language-server: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: gn_language_server\n"
  },
  {
    "path": "packages/go-debug-adapter/package.yaml",
    "content": "---\nname: go-debug-adapter\ndescription: Go debug adapter sourced from the VSCode Go extension.\nhomepage: https://github.com/golang/vscode-go\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/golang/vscode-go@v0.52.2\n  asset:\n    file: go-{{ version | strip_prefix \"v\" }}.vsix\n\nbin:\n  go-debug-adapter: node:extension/dist/debugAdapter.js\n"
  },
  {
    "path": "packages/gofumpt/package.yaml",
    "content": "---\nname: gofumpt\ndescription: A stricter gofmt.\nhomepage: https://pkg.go.dev/mvdan.cc/gofumpt\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/mvdan.cc/gofumpt@v0.9.2\n\nbin:\n  gofumpt: golang:gofumpt\n"
  },
  {
    "path": "packages/goimports/package.yaml",
    "content": "---\nname: goimports\ndescription: |\n  A golang formatter which formats your code in the same style as gofmt and additionally updates your Go import lines,\n  adding missing ones and removing unreferenced ones.\nhomepage: https://pkg.go.dev/golang.org/x/tools/cmd/goimports\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/golang.org/x/tools@v0.44.0#cmd/goimports\n\nbin:\n  goimports: golang:goimports\n"
  },
  {
    "path": "packages/goimports-reviser/package.yaml",
    "content": "---\nname: goimports-reviser\ndescription: |\n  Tool for Golang to sort goimports by 3-4 groups: std, general, company (optional), and project dependencies. Also,\n  formatting for your code will be prepared (so, you don't need to use gofmt or goimports separately). Use additional\n  option -rm-unused to remove unused imports and -set-alias to rewrite import aliases for versioned packages.\nhomepage: https://github.com/incu6us/goimports-reviser\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/incu6us/goimports-reviser@v3.12.6\n  asset:\n    - target: darwin_x64\n      file: goimports-reviser_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n      bin: goimports-reviser\n    - target: darwin_arm64\n      file: goimports-reviser_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: goimports-reviser\n    - target: linux_x64\n      file: goimports-reviser_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin: goimports-reviser\n    - target: linux_arm64\n      file: goimports-reviser_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: goimports-reviser\n    - target: win_x64\n      file: goimports-reviser_{{ version | strip_prefix \"v\" }}_windows_amd64.tar.gz\n      bin: goimports-reviser.exe\n\nbin:\n  goimports-reviser: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/golangci-lint/package.yaml",
    "content": "---\nname: golangci-lint\ndescription: |\n  golangci-lint is a fast Go linters runner. It runs linters in parallel, uses caching, supports yaml config, has\n  integrations with all major IDE and has dozens of linters included.\nhomepage: https://golangci-lint.run/\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Go\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/golangci/golangci-lint@v2.11.4\n  asset:\n    - target: linux_armv6l\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-armv6.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-armv6/golangci-lint\n    - target: linux_armv7l\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-armv7.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-armv7/golangci-lint\n    - target: linux_x64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-amd64.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-amd64/golangci-lint\n    - target: linux_arm64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-arm64.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-arm64/golangci-lint\n    - target: linux_x86\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-386.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-linux-386/golangci-lint\n    - target: darwin_x64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-darwin-amd64.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-darwin-amd64/golangci-lint\n    - target: darwin_arm64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-darwin-arm64.tar.gz\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-darwin-arm64/golangci-lint\n    - target: win_armv6l\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-armv6.zip\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-armv6/golangci-lint.exe\n    - target: win_armv7l\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-armv7.zip\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-armv7/golangci-lint.exe\n    - target: win_arm64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-arm64.zip\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-arm64/golangci-lint.exe\n    - target: win_x64\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-amd64.zip\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-amd64/golangci-lint.exe\n    - target: win_x86\n      file: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-386.zip\n      bin: golangci-lint-{{ version | strip_prefix \"v\" }}-windows-386/golangci-lint.exe\n\nbin:\n  golangci-lint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/golangci-lint-langserver/package.yaml",
    "content": "---\nname: golangci-lint-langserver\ndescription: golangci-lint language server.\nhomepage: https://github.com/nametake/golangci-lint-langserver\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/nametake/golangci-lint-langserver@v0.0.12\n\nbin:\n  golangci-lint-langserver: golang:golangci-lint-langserver\n\nneovim:\n  lspconfig: golangci_lint_ls\n"
  },
  {
    "path": "packages/golines/package.yaml",
    "content": "---\nname: golines\ndescription: A golang formatter that fixes long lines.\nhomepage: https://github.com/segmentio/golines\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/golangci/golines@v0.15.0\n\nbin:\n  golines: golang:golines\n"
  },
  {
    "path": "packages/gomodifytags/package.yaml",
    "content": "---\nname: gomodifytags\ndescription: Go tool to modify/update field tags in structs.\nhomepage: https://github.com/fatih/gomodifytags\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/fatih/gomodifytags@v1.17.0\n\nbin:\n  gomodifytags: golang:gomodifytags\n"
  },
  {
    "path": "packages/google-java-format/package.yaml",
    "content": "---\nname: google-java-format\ndescription: google-java-format is a program that reformats Java source code to comply with Google Java Style.\nhomepage: https://github.com/google/google-java-format\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Java\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/google/google-java-format@v1.35.0\n  asset:\n    - target: darwin_arm64\n      file: google-java-format_darwin-arm64\n      bin: google-java-format_darwin-arm64\n    - target: linux_arm64\n      file: google-java-format_linux-arm64\n      bin: google-java-format_linux-arm64\n    - target: linux_x64\n      file: google-java-format_linux-x86-64\n      bin: google-java-format_linux-x86-64\n    - target: win_x64\n      file: google-java-format_windows-x86-64.exe\n      bin: google-java-format_windows-x86-64.exe\n    # All other platforms that don't have binary\n    - target: [unix, win]\n      file: google-java-format-{{ version | strip_prefix \"v\" }}-all-deps.jar\n      bin: java-jar:google-java-format-{{ version | strip_prefix \"v\" }}-all-deps.jar\n\nbin:\n  google-java-format: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/gopls/package.yaml",
    "content": "---\nname: gopls\ndescription: |\n  gopls (pronounced \"Go please\") is the official Go language server developed by the Go team. It provides IDE features\n  to any LSP-compatible editor.\nhomepage: https://pkg.go.dev/golang.org/x/tools/gopls\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/golang.org/x/tools/gopls@v0.21.1\n\nbin:\n  gopls: golang:gopls\n\nneovim:\n  lspconfig: gopls\n"
  },
  {
    "path": "packages/gospel/package.yaml",
    "content": "---\nname: gospel\ndescription: misspelled word linter for Go comments, string literals and embedded files.\nhomepage: https://github.com/kortschak/gospel\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Go\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/github.com/kortschak/gospel@v1.15.0\n\nbin:\n  gospel: golang:gospel\n\nci_skip: true\n"
  },
  {
    "path": "packages/gotests/package.yaml",
    "content": "---\nname: gotests\ndescription: |\n  Gotests is a Golang commandline tool that generates table driven tests based on its target source files' function and\n  method signatures.\nhomepage: https://github.com/cweill/gotests\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/cweill/gotests@v1.9.0#gotests\n\nbin:\n  gotests: golang:gotests\n"
  },
  {
    "path": "packages/gotestsum/package.yaml",
    "content": "---\nname: gotestsum\ndescription: |\n  'go test' runner with output optimized for humans, JUnit XML for CI integration, and a summary of the test results.\nhomepage: https://github.com/gotestyourself/gotestsum\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Go\ncategories: []\n\nsource:\n  id: pkg:golang/gotest.tools/gotestsum@v1.13.0\n\nbin:\n  gotestsum: golang:gotestsum\n"
  },
  {
    "path": "packages/gradle-language-server/package.yaml",
    "content": "---\nname: gradle-language-server\ndescription: Gradle language server.\nhomepage: https://github.com/microsoft/vscode-gradle\nlicenses:\n  - MIT\nlanguages:\n  - Gradle\ncategories:\n  - LSP\n\nsource:\n  id: pkg:openvsx/vscjava/vscode-gradle@3.15.0\n  download:\n    file: vscjava.vscode-gradle-{{version}}.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode-gradle/{{version}}/extension/package.json\n\nbin:\n  gradle-language-server: java-jar:extension/lib/gradle-language-server.jar\n\nneovim:\n  lspconfig: gradle_ls\n"
  },
  {
    "path": "packages/grammarly-languageserver/package.yaml",
    "content": "---\nname: grammarly-languageserver\ndescription: A language server implementation on top of Grammarly's SDK.\nhomepage: https://github.com/znck/grammarly\n\ndeprecation:\n  since: \"0.0.4\"\n  message: Repo archived in 2024.\n\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\n  - Text\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/grammarly-languageserver@0.0.4\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/znck/grammarly/main/extension/package.json\n\nbin:\n  grammarly-languageserver: npm:grammarly-languageserver\n\nneovim:\n  lspconfig: grammarly\n"
  },
  {
    "path": "packages/graphql-language-service-cli/package.yaml",
    "content": "---\nname: graphql-language-service-cli\ndescription: GraphQL Language Service provides an interface for building GraphQL language services for IDEs.\nhomepage: https://www.npmjs.com/package/graphql-language-service-cli\nlicenses:\n  - MIT\nlanguages:\n  - GraphQL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/graphql-language-service-cli@3.5.0\n\nbin:\n  graphql-lsp: npm:graphql-lsp\n\nneovim:\n  lspconfig: graphql\n"
  },
  {
    "path": "packages/groovy-language-server/package.yaml",
    "content": "---\nname: groovy-language-server\ndescription: A language server for Groovy.\nhomepage: https://github.com/GroovyLanguageServer/groovy-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Groovy\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/GroovyLanguageServer/groovy-language-server@0746b250604c0a75bf620f7257aed8df12d025c3\n  build:\n    run: ./gradlew --no-daemon build\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/GroovyLanguageServer/groovy-language-server/{{version}}/vscode-extension/package.json\n\nbin:\n  groovy-language-server: java-jar:build/libs/groovy-language-server-all.jar\n\nneovim:\n  lspconfig: groovyls\n"
  },
  {
    "path": "packages/hadolint/package.yaml",
    "content": "---\nname: hadolint\ndescription: Dockerfile linter, validate inline bash, written in Haskell.\nhomepage: https://github.com/hadolint/hadolint\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Docker\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/hadolint/hadolint@v2.14.0\n  asset:\n    - target: darwin_x64\n      file: hadolint-macos-x86_64\n    - target: darwin_arm64\n      file: hadolint-macos-arm64\n    - target: linux_x64\n      file: hadolint-Linux-x86_64\n    - target: linux_arm64\n      file: hadolint-Linux-arm64\n    - target: win_x64\n      file: hadolint-Windows-x86_64.exe\n\n  version_overrides:\n    - constraint: semver:<=2.12.0\n      id: pkg:github/hadolint/hadolint@v2.12.0\n      asset:\n        - target: darwin_x64\n          file: hadolint-Darwin-x86_64\n        - target: linux_x64\n          file: hadolint-Linux-x86_64\n        - target: linux_arm64\n          file: hadolint-Linux-arm64\n        - target: win_x64\n          file: hadolint-Windows-x86_64.exe\n\nbin:\n  hadolint: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/haml-lint/package.yaml",
    "content": "---\nname: haml-lint\ndescription: |\n  haml-lint is a tool to help keep your HAML files clean and readable. In addition to HAML-specific style and lint\n  checks, it integrates with RuboCop to bring its powerful static analysis tools to your HAML documents.\nhomepage: https://github.com/sds/haml-lint\nlicenses:\n  - MIT\nlanguages:\n  - HAML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:gem/haml_lint@0.73.0\n\nbin:\n  haml-lint: gem:haml-lint\n"
  },
  {
    "path": "packages/harper-ls/package.yaml",
    "content": "---\nname: harper-ls\ndescription: The Grammar Checker for Developers.\nhomepage: https://github.com/elijah-potter/harper\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Markdown\n  - Rust\n  - TypeScript\n  - JavaScript\n  - Python\n  - Go\n  - C\n  - C++\n  - Ruby\n  - C#\n  - TOML\n  - Lua\n  - Java\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/elijah-potter/harper@v2.1.0\n  asset:\n    - target: linux_x64_gnu\n      file: harper-ls-x86_64-unknown-linux-gnu.tar.gz\n      bin: harper-ls\n    - target: linux_x64_musl\n      file:  harper-ls-x86_64-unknown-linux-musl.tar.gz\n      bin: harper-ls\n    - target: linux_arm64_gnu\n      file: harper-ls-aarch64-unknown-linux-gnu.tar.gz\n      bin: harper-ls\n    - target: linux_arm64_musl\n      file: harper-ls-aarch64-unknown-linux-musl.tar.gz\n      bin: harper-ls\n    - target: darwin_x64\n      file: harper-ls-x86_64-apple-darwin.tar.gz\n      bin: harper-ls\n    - target: darwin_arm64\n      file: harper-ls-aarch64-apple-darwin.tar.gz\n      bin: harper-ls\n    - target: win_x64\n      file: harper-ls-x86_64-pc-windows-msvc.zip\n      bin: harper-ls.exe\n\nbin:\n  harper-ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: harper_ls\n"
  },
  {
    "path": "packages/haskell-debug-adapter/package.yaml",
    "content": "---\nname: haskell-debug-adapter\ndescription: A debug adapter for Haskell debugging system.\nhomepage: https://github.com/phoityne/haskell-debug-adapter\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Haskell\ncategories:\n  - DAP\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/phoityne/haskell-debug-adapter@0.0.39.0\n  build:\n    - target: unix\n      run: |\n        cabal update && cabal install haskell-dap ghci-dap haskell-debug-adapter-\"$VERSION\" --install-method=copy --installdir=\"$PWD\"\n      staged: false\n      env:\n        VERSION: \"{{version}}\"\n      bin:\n        ghci_dap: ghci-dap\n        dap: haskell-debug-adapter\n\n    - target: win\n      run: |\n        cabal update && cabal install haskell-dap ghci-dap haskell-debug-adapter-$env:VERSION --install-method=copy --installdir=\"$pwd\"\n      staged: false\n      env:\n        VERSION: \"{{version}}\"\n      bin:\n        ghci_dap: ghci-dap.exe\n        dap: haskell-debug-adapter.exe\n\nbin:\n  ghci-dap: \"{{source.build.bin.ghci_dap}}\"\n  haskell-debug-adapter: \"{{source.build.bin.dap}}\"\n"
  },
  {
    "path": "packages/haskell-language-server/package.yaml",
    "content": "---\nname: haskell-language-server\ndescription: Official Haskell Language Server implementation.\nhomepage: https://haskell-language-server.readthedocs.io/en/latest/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Haskell\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/haskell/haskell-language-server@2.13.0.0\n  build:\n    - target: unix\n      run: ghcup --url-source=https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-vanilla-0.0.9.yaml install hls \"$VERSION\" -i \"$PWD\"\n      staged: false\n      env:\n        VERSION: \"{{version}}\"\n      bin:\n        wrapper: bin/haskell-language-server-wrapper\n        server_9_6_7: bin/haskell-language-server-9.6.7\n        server_9_8_4: bin/haskell-language-server-9.8.4\n        server_9_10_3: bin/haskell-language-server-9.10.3\n        server_9_12_2: bin/haskell-language-server-9.12.2\n        server_9_14_1: bin/haskell-language-server-9.14.1\n\n    - target: win\n      run: ghcup install hls $env:VERSION -i ($pwd).path\n      staged: false\n      env:\n        VERSION: \"{{version}}\"\n      bin:\n        wrapper: haskell-language-server-wrapper.exe\n        server_9_6_7: haskell-language-server-9.6.7.exe\n        server_9_8_4: haskell-language-server-9.8.4.exe\n        server_9_10_3: haskell-language-server-9.10.3.exe\n        server_9_12_2: haskell-language-server-9.12.2.exe\n        server_9_14_1: haskell-language-server-9.14.1.exe\n\nbin:\n  haskell-language-server-wrapper: \"{{source.build.bin.wrapper}}\"\n  # https://github.com/haskell/haskell-language-server/issues/3162\n  haskell-language-server-9.6.7: \"{{source.build.bin.server_9_6_7}}\"\n  haskell-language-server-9.8.4: \"{{source.build.bin.server_9_8_4}}\"\n  haskell-language-server-9.10.3: \"{{source.build.bin.server_9_10_3}}\"\n  haskell-language-server-9.12.2: \"{{source.build.bin.server_9_12_2}}\"\n  haskell-language-server-9.14.1: \"{{source.build.bin.server_9_14_1}}\"\n\nneovim:\n  lspconfig: hls\n"
  },
  {
    "path": "packages/haxe-language-server/package.yaml",
    "content": "---\nname: haxe-language-server\ndescription: Language Server Protocol implementation for the Haxe language.\nhomepage: https://github.com/vshaxe/haxe-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Haxe\ncategories:\n  - LSP\n\nsource:\n  id: pkg:openvsx/nadako/vshaxe@2.34.1\n  download:\n    file: nadako.vshaxe-{{version}}.vsix\n\nbin:\n  haxe-language-server: node:extension/bin/server.js\n\nneovim:\n  lspconfig: haxe_language_server\n"
  },
  {
    "path": "packages/hclfmt/package.yaml",
    "content": "---\nname: hclfmt\ndescription: A command to format HCL files\nhomepage: https://github.com/hashicorp/hcl\nlicenses:\n  - MPL-2.0\nlanguages:\n  - HCL\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/hashicorp/hcl/v2@v2.24.0#cmd/hclfmt\n\nbin:\n  hclfmt: golang:hclfmt\n"
  },
  {
    "path": "packages/hdl-checker/package.yaml",
    "content": "---\nname: hdl-checker\ndescription: HDL Checker is a language server that wraps VHDL/Verilg/SystemVerilog tools that aims to reduce the boilerplate code needed to set things up\nhomepage: https://pypi.org/project/hdl-checker/\nlicenses:\n  - GPL-3.0\nlanguages:\n  - VHDL\n  - Verilog\n  - SystemVerilog\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/hdl-checker@0.7.4\n\nbin:\n  hdl_checker: pypi:hdl_checker\n\nneovim:\n  lspconfig: hdl_checker\n"
  },
  {
    "path": "packages/helm-ls/package.yaml",
    "content": "---\nname: helm-ls\ndescription: A language server that offers Helm support in early development - programmed in Go.\nhomepage: https://github.com/mrjosh/helm-ls\nlicenses:\n  - MIT\nlanguages:\n  - Helm\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/mrjosh/helm-ls@v0.5.4\n  asset:\n    - target: darwin_x64\n      file: helm_ls_darwin_amd64\n    - target: darwin_arm64\n      file: helm_ls_darwin_arm64\n    - target: linux_x64_gnu\n      file: helm_ls_linux_amd64\n    - target: linux_arm\n      file: helm_ls_linux_arm\n    - target: linux_arm64\n      file: helm_ls_linux_arm64\n    - target: win_x64\n      file: helm_ls_windows_amd64.exe\n\n  version_overrides:\n    - constraint: semver:<=v0.0.5\n      id: pkg:github/mrjosh/helm-ls@v0.0.5\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: helm_ls_darwin_amd64\n        - target: win_x64\n          file: helm_ls_windows_amd64:helm_ls_windows_amd64.exe\n        - target: linux_x64_gnu\n          file: helm_ls_linux_amd64\n        - target: linux_arm\n          file: helm_ls_linux_arm\n\nbin:\n  helm_ls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: helm_ls\n"
  },
  {
    "path": "packages/herb-language-server/package.yaml",
    "content": "---\nname: herb-language-server\ndescription: Powerful and seamless HTML-aware ERB parsing and tooling.\nhomepage: https://github.com/marcoroth/herb\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/@herb-tools/language-server@0.10.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/marcoroth/herb/v{{version}}/javascript/packages/vscode/package.json\n\nbin:\n  herb-language-server: npm:herb-language-server\n\nneovim:\n  lspconfig: herb_ls\n"
  },
  {
    "path": "packages/hlint/package.yaml",
    "content": "---\nname: hlint\ndescription: |\n  HLint is a tool for suggesting possible improvements to Haskell code. These suggestions include ideads such as using\n  alternative functions, simplifying code and spotting redundancies.\nhomepage: https://github.com/ndmitchell/hlint\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Haskell\ncategories:\n  - Linter\nsource:\n  id: pkg:github/ndmitchell/hlint@v3.8\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: hlint-{{ version | strip_prefix \"v\" }}-x86_64-osx.tar.gz\n      bin: hlint-{{ version | strip_prefix \"v\" }}/hlint\n    - target: linux_x64\n      file: hlint-{{ version | strip_prefix \"v\" }}-x86_64-linux.tar.gz\n      bin: hlint-{{ version | strip_prefix \"v\" }}/hlint\n    - target: win_x64\n      file: hlint-{{ version | strip_prefix \"v\" }}-x86_64-windows.zip\n      bin: hlint-{{ version | strip_prefix \"v\" }}/hlint.exe\n\nbin:\n  hlint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/hoon-language-server/package.yaml",
    "content": "---\nname: hoon-language-server\ndescription: Language Server for Hoon. Middleware to translate between the Language Server Protocol and your Urbit.\nhomepage: https://github.com/urbit/hoon-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Hoon\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40urbit/hoon-language-server@0.1.2\n\nbin:\n  hoon-language-server: npm:hoon-language-server\n\nneovim:\n  lspconfig: hoon_ls\n"
  },
  {
    "path": "packages/html-lsp/package.yaml",
    "content": "---\nname: html-lsp\ndescription: Language Server Protocol implementation for HTML.\nhomepage: https://github.com/microsoft/vscode-html-languageservice\nlicenses:\n  - MIT\nlanguages:\n  - HTML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vscode-langservers-extracted@4.10.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode/main/extensions/html-language-features/package.json\n\nbin:\n  vscode-html-language-server: npm:vscode-html-language-server\n\nneovim:\n  lspconfig: html\n"
  },
  {
    "path": "packages/htmlbeautifier/package.yaml",
    "content": "---\nname: htmlbeautifier\ndescription: A normaliser/beautifier for HTML that also understands embedded Ruby. Ideal for tidying up Rails templates.\nhomepage: https://github.com/threedaymonk/htmlbeautifier\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - Ruby\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:gem/htmlbeautifier@1.4.3\n\nbin:\n  htmlbeautifier: gem:htmlbeautifier\n"
  },
  {
    "path": "packages/htmlhint/package.yaml",
    "content": "---\nname: htmlhint\ndescription: The Static Code Analysis Tool for your HTML\nhomepage: https://htmlhint.com\nlicenses:\n  - MIT\nlanguages:\n  - HTML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/htmlhint@1.9.2\nbin:\n  htmlhint: npm:htmlhint\n"
  },
  {
    "path": "packages/htmx-lsp/package.yaml",
    "content": "---\nname: htmx-lsp\ndescription: An experimental LSP for HTMX.\nhomepage: https://github.com/ThePrimeagen/htmx-lsp\nlicenses:\n  - MIT\nlanguages:\n  - HTMX\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/htmx-lsp@0.1.0\n\nbin:\n  htmx-lsp: cargo:htmx-lsp\n\nneovim:\n  lspconfig: htmx\n"
  },
  {
    "path": "packages/hydra-lsp/package.yaml",
    "content": "---\nname: hydra-lsp\ndescription: LSP for Hydra config files\nhomepage: https://github.com/Retsediv/hydra-lsp\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/hydra-lsp@0.1.3\n\nbin:\n  hydra-lsp: pypi:hydra-lsp\n\nneovim:\n  lspconfig: hydra_lsp\n"
  },
  {
    "path": "packages/hylo-language-server/package.yaml",
    "content": "---\nname: hylo-language-server\ndescription: |\n  hylo-language-server is an implementation of the Language Server Protocol for the\n  Hylo programming language that provides features like semantic highlighting, \n  go-to-definition, and more.\n\nhomepage: https://github.com/hylo-lang/hylo-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Hylo\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/hylo-lang/hylo-language-server@v0.0.15\n  asset:\n    - target: linux_x64\n      file: hylo-language-server-linux-x64.zip\n      bin: hylo-language-server\n\n    - target: linux_arm64\n      file: hylo-language-server-linux-arm64.zip\n      bin: hylo-language-server\n\n    - target: darwin_x64\n      file: hylo-language-server-macos-x64.zip\n      bin: hylo-language-server\n\n    - target: darwin_arm64\n      file: hylo-language-server-macos-arm64.zip\n      bin: hylo-language-server\n\n    - target: win_x64\n      file: hylo-language-server-windows-x64.zip\n      bin: hylo-language-server.exe\n\n    - target: win_arm64\n      file: hylo-language-server-windows-arm64.zip\n      bin: hylo-language-server.exe\n\nbin:\n  hylo-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: hylo_ls\n"
  },
  {
    "path": "packages/hyprls/package.yaml",
    "content": "---\nname: hyprls\ndescription: A LSP server for Hyprland config files\nhomepage: https://github.com/hyprland-community/hyprls\nlicenses:\n  - MIT\nlanguages:\n  - Hypr\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/hyprland-community/hyprls@v0.13.0\n  asset:\n    - target: darwin_arm64\n      file: hyprls-macos\n      bin: hyprls-macos\n    - target: win_x64\n      file: hyprls.exe\n      bin: hyprls.exe\n    - target: linux_x64_gnu\n      file: hyprls\n      bin: hyprls\n\nbin:\n  hyprls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: hyprls\n"
  },
  {
    "path": "packages/iferr/package.yaml",
    "content": "---\nname: iferr\ndescription: Go tool to generate if err != nil block for the current function.\nhomepage: https://github.com/koron/iferr\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories: []\n\nsource:\n  id: pkg:golang/github.com/koron/iferr@v0.0.0-20240122035601-9c3e2fbe4bd1\n\nbin:\n  iferr: golang:iferr\n"
  },
  {
    "path": "packages/impl/package.yaml",
    "content": "---\nname: impl\ndescription: impl generates method stubs for implementing an interface.\nhomepage: https://github.com/josharian/impl\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories: []\n\nsource:\n  id: pkg:golang/github.com/josharian/impl@v1.5.0\n\nbin:\n  impl: golang:impl\n"
  },
  {
    "path": "packages/intelephense/package.yaml",
    "content": "---\nname: intelephense\ndescription: Professional PHP tooling for any Language Server Protocol capable editor.\nhomepage: https://intelephense.com\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/intelephense@1.16.5\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bmewburn/vscode-intelephense/master/package.json\n\nbin:\n  intelephense: npm:intelephense\n\nneovim:\n  lspconfig: intelephense\n"
  },
  {
    "path": "packages/isort/package.yaml",
    "content": "---\nname: isort\ndescription: isort is a Python utility / library to sort imports alphabetically.\nhomepage: https://pypi.org/project/isort/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/isort@8.0.1\n\nbin:\n  isort: pypi:isort\n"
  },
  {
    "path": "packages/java-debug-adapter/package.yaml",
    "content": "---\nname: java-debug-adapter\ndescription: The debug server implementation for Java. It conforms to the debugger adapter protocol.\nhomepage: https://github.com/microsoft/java-debug\nlicenses:\n  - EPL-1.0\nlanguages:\n  - Java\ncategories:\n  - DAP\n\nsource:\n  id: pkg:openvsx/vscjava/vscode-java-debug@0.58.2\n  download:\n    file: vscjava.vscode-java-debug-{{version}}.vsix\n\nshare:\n  java-debug-adapter/: extension/server/\n  java-debug-adapter/com.microsoft.java.debug.plugin.jar: extension/server/com.microsoft.java.debug.plugin-0.53.2.jar\n"
  },
  {
    "path": "packages/java-language-server/package.yaml",
    "content": "---\nname: java-language-server\ndescription: Java language server using the Java compiler API.\nhomepage: https://github.com/georgewfraser/java-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Java\ncategories:\n  - LSP\n  - DAP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/georgewfraser/java-language-server@v0.2.39\n  build:\n    - target: [darwin_x64, darwin_arm64]\n      run: |\n        ./scripts/link_mac.sh\n        mvn package -DskipTests\n      bin:\n        lsp: exec:dist/lang_server_mac.sh\n        dap: exec:dist/debug_adapter_mac.sh\n    - target: linux\n      run: |\n        ./scripts/link_linux.sh\n        mvn package -DskipTests\n      bin:\n        lsp: exec:dist/lang_server_linux.sh\n        dap: exec:dist/debug_adapter_linux.sh\n    - target: win\n      run: |\n        bash .\\scripts\\link_windows.sh\n        mvn package -DskipTests\n      bin:\n        lsp: dist/lang_server_windows.cmd\n        dap: dist/debug_adapter_windows.cmd\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/georgewfraser/java-language-server/{{version}}/package.json\n\nbin:\n  java-language-server: \"{{source.build.bin.lsp}}\"\n  java-language-server-debugger: \"{{source.build.bin.dap}}\"\n\nneovim:\n  lspconfig: java_language_server\n"
  },
  {
    "path": "packages/java-test/package.yaml",
    "content": "---\nname: java-test\ndescription: |\n  The Test Runner for Java works with java-debug-adapter to provide the following features:\n  - Run/Debug test cases\n  - Customize test configurations\n  - View test report\n  - View tests in Test Explorer\n\n  Enables support for the following test frameworks:\n\n  - JUnit 4 (v4.8.0+)\n  - JUnit 5 (v5.1.0+)\n  - JUnit 6 (v6.0.1+)\n  - TestNG (v6.8.0+)\n\nhomepage: https://github.com/microsoft/vscode-java-test\nlicenses:\n  - MIT\nlanguages:\n  - Java\ncategories:\n  - DAP\n\nsource:\n  id: pkg:openvsx/vscjava/vscode-java-test@0.44.0\n  download:\n    file: vscjava.vscode-java-test-{{version}}.vsix\n    plugin_version: 0.43.1\n\n  version_overrides:\n    - constraint: semver:<=0.43.1\n      id: pkg:openvsx/vscjava/vscode-java-test@0.43.1\n      download:\n        file: vscjava.vscode-java-test-{{version}}.vsix\n        plugin_version: \"{{version}}\"\n\nshare:\n  java-test/: extension/server/\n  java-test/com.microsoft.java.test.plugin.jar: extension/server/com.microsoft.java.test.plugin-{{ source.download.plugin_version }}.jar\n"
  },
  {
    "path": "packages/jayvee-language-server/package.yaml",
    "content": "---\nname: jayvee-language-server\ndescription: |\n  Jayvee is a domain-specific language and runtime for automated processing of data pipelines.\nhomepage: https://jvalue.github.io/jayvee/\nlicenses:\n  - Apache-2.0\n  - MIT\n  - CC-BY-4.0\n  - AGPL-3.0-only\nlanguages:\n  - Jayvee\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/jvalue/jayvee@v0.5.0-alpha\n  asset:\n    file: jayvee.vsix\n\nbin:\n  jayvee-language-server: node:extension/language-server.cjs\n"
  },
  {
    "path": "packages/jdtls/package.yaml",
    "content": "---\nname: jdtls\ndescription: Java language server.\nhomepage: https://github.com/eclipse/eclipse.jdt.ls\nlicenses:\n  - EPL-2.0\nlanguages:\n  - Java\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:generic/eclipse/eclipse.jdt.ls@v1.58.0\n  download:\n    - target: [darwin_x64, darwin_arm64]\n      files:\n        jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix \"v\" }}/jdt-language-server-{{ version | strip_prefix \"v\" }}-202604151538.tar.gz\n        lombok.jar: https://projectlombok.org/downloads/lombok.jar\n      config: config_mac/\n    - target: linux\n      files:\n        jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix \"v\" }}/jdt-language-server-{{ version | strip_prefix \"v\" }}-202604151538.tar.gz\n        lombok.jar: https://projectlombok.org/downloads/lombok.jar\n      config: config_linux/\n    - target: win\n      files:\n        jdtls.tar.gz: https://download.eclipse.org/jdtls/milestones/{{ version | strip_prefix \"v\" }}/jdt-language-server-{{ version | strip_prefix \"v\" }}-202604151538.tar.gz\n        lombok.jar: https://projectlombok.org/downloads/lombok.jar\n      config: config_win/\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/redhat-developer/vscode-java/master/package.json\n\nbin:\n  jdtls: python:bin/jdtls\n\nshare:\n  jdtls/lombok.jar: lombok.jar\n  jdtls/plugins/: plugins/\n  jdtls/plugins/org.eclipse.equinox.launcher.jar: plugins/org.eclipse.equinox.launcher_1.7.100.v20251111-0406.jar\n  jdtls/config/: \"{{source.download.config}}\"\n\nneovim:\n  lspconfig: jdtls\n"
  },
  {
    "path": "packages/jedi-language-server/package.yaml",
    "content": "---\nname: jedi-language-server\ndescription: A Python language server exclusively for Jedi. If Jedi supports it well, this language server should too.\nhomepage: https://github.com/pappasam/jedi-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/jedi-language-server@0.46.0\n\nbin:\n  jedi-language-server: pypi:jedi-language-server\n\nneovim:\n  lspconfig: jedi_language_server\n"
  },
  {
    "path": "packages/jinja-lsp/package.yaml",
    "content": "---\nname: jinja-lsp\ndescription: |\n  Experimental jinja lsp server, with autocomplete, syntax highlighting, hover, goto definition, code actions and\n  linting.\nhomepage: https://github.com/uros-5/jinja-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Django\n  - Jinja\n  - Nunjucks\ncategories:\n  - LSP\n  - Linter\n  - Compiler\n\nsource:\n  id: pkg:cargo/jinja-lsp@0.1.91\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/uros-5/jinja-lsp/v{{version}}/editors/code/package.json\n\nbin:\n  jinja-lsp: cargo:jinja-lsp\n\nneovim:\n  lspconfig: jinja_lsp\n"
  },
  {
    "path": "packages/joker/package.yaml",
    "content": "---\nname: joker\ndescription: Small Clojure interpreter, linter and formatter.\nhomepage: https://github.com/candid82/joker\nlicenses:\n  - EPL-1.0\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/candid82/joker@v1.7.1\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: joker-mac-amd64.zip\n      bin: joker\n    - target: linux_x64\n      file: joker-linux-amd64.zip\n      bin: joker\n    - target: win_x64\n      file: joker-win-amd64.zip\n      bin: joker.exe\n\nbin:\n  joker: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/jq/package.yaml",
    "content": "---\nname: jq\ndescription: Command-line JSON processor.\nhomepage: https://github.com/stedolan/jq\nlicenses:\n  - MIT\nlanguages:\n  - JSON\ncategories:\n  - Formatter\n\nsource:\n  # renovate:versioning=regex:^jq-(?<major>\\d+)\\.(?<minor>\\d+)$\n  id: pkg:github/stedolan/jq@jq-1.7\n  asset:\n    - target: darwin_x64\n      file: jq-macos-amd64\n    - target: darwin_arm64\n      file: jq-macos-arm64\n    - target: linux_x86\n      file: jq-linux-i386\n    - target: linux_x64\n      file: jq-linux-amd64\n    - target: linux_arm64\n      file: jq-linux-arm64\n    - target: win_x86\n      file: jq-windows-i386.exe\n    - target: win_x64\n      file: jq-windows-amd64.exe\n\nbin:\n  jq: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/jq-lsp/package.yaml",
    "content": "---\nname: jq-lsp\ndescription: |\n  jq-lsp is a language server for the jq language, developed by Mattias Wadman. It provides IDE features to any\n  LSP-compatible editor.\nhomepage: https://github.com/wader/jq-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Jq\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/wader/jq-lsp@v0.1.17\n\nbin:\n  jq-lsp: golang:jq-lsp\n\nneovim:\n  lspconfig: jqls\n"
  },
  {
    "path": "packages/js-debug-adapter/package.yaml",
    "content": "---\nname: js-debug-adapter\ndescription: The VS Code JavaScript debugger.\nhomepage: https://github.com/microsoft/vscode-js-debug\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/microsoft/vscode-js-debug@v1.117.0\n  asset:\n    file: js-debug-dap-{{version}}.tar.gz\n  bin: node:js-debug/src/dapDebugServer.js\n\n  version_overrides:\n    - constraint: semver:<=v1.76.1\n      id: pkg:github/microsoft/vscode-js-debug@v1.76.1\n      build:\n        run: |\n          npm install --ignore-scripts --legacy-peer-deps\n          npm run compile\n          npm exec -- gulp vsDebugServerBundle\n          npm install --production --ignore-scripts --legacy-peer-deps\n      bin: node:out/src/vsDebugServer.js\n\nbin:\n  js-debug-adapter: \"{{source.bin}}\"\n"
  },
  {
    "path": "packages/json-lsp/package.yaml",
    "content": "---\nname: json-lsp\ndescription: Language Server Protocol implementation for JSON.\nhomepage: https://github.com/microsoft/vscode-json-languageservice\nlicenses:\n  - MIT\nlanguages:\n  - JSON\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vscode-langservers-extracted@4.10.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode/master/extensions/json-language-features/package.json\n\nbin:\n  vscode-json-language-server: npm:vscode-json-language-server\n\nneovim:\n  lspconfig: jsonls\n"
  },
  {
    "path": "packages/json-repair/package.yaml",
    "content": "---\nname: json-repair\ndescription: A package to repair broken json strings\nhomepage: https://pypi.org/project/json-repair/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/json-repair@0.59.5\n\nbin:\n  json_repair: pypi:json_repair\n"
  },
  {
    "path": "packages/json-to-struct/package.yaml",
    "content": "---\nname: json-to-struct\ndescription: A simple command-line tool for generating to struct definitions from JSON.\nhomepage: https://github.com/tmc/json-to-struct\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Go\ncategories: []\n\nsource:\n  id: pkg:golang/github.com/tmc/json-to-struct@v0.1.0\n\nbin:\n  json-to-struct: golang:json-to-struct\n"
  },
  {
    "path": "packages/jsonld-lsp/package.yaml",
    "content": "---\nname: jsonld-lsp\ndescription: JSON-LD Language Server.\nhomepage: https://ajuvercr.github.io/jsonld-lsp/\nlicenses:\n  - MIT\nlanguages:\n  - JSON-LD\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/ajuvercr/jsonld-lsp@v1.0.5\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: jsonld-language-server-x86_64-apple-darwin.tar.gz\n      bin: jsonld-language-server\n    - target: linux_x64_gnu\n      file: jsonld-language-server-x86_64-unknown-linux-gnu.tar.gz\n      bin: jsonld-language-server\n    - target: win_x64\n      file: jsonld-language-server-x86_64-pc-windows-msvc.zip\n      bin: jsonld-language-server.exe\n\nbin:\n  jsonld-language-server: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/jsonlint/package.yaml",
    "content": "---\nname: jsonlint\ndescription: A pure JavaScript version of the service provided at jsonlint.com.\nhomepage: https://github.com/zaach/jsonlint\nlicenses:\n  - MIT\nlanguages:\n  - JSON\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/jsonlint@1.6.3\n\nbin:\n  jsonlint: npm:jsonlint\n"
  },
  {
    "path": "packages/jsonnet-language-server/package.yaml",
    "content": "---\nname: jsonnet-language-server\ndescription: A Language Server Protocol (LSP) server for Jsonnet (https://jsonnet.org).\nhomepage: https://github.com/grafana/jsonnet-language-server\nlicenses:\n  - AGPL-3.0-or-later\nlanguages:\n  - Jsonnet\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/grafana/jsonnet-language-server@v0.17.0\n\nbin:\n  jsonnet-language-server: golang:jsonnet-language-server\n\nneovim:\n  lspconfig: jsonnet_ls\n"
  },
  {
    "path": "packages/jsonnetfmt/package.yaml",
    "content": "---\nname: jsonnetfmt\ndescription: jsonnetfmt is a command line tool to format jsonnetfmt files.\nhomepage: https://github.com/google/go-jsonnet/tree/master/cmd/jsonnetfmt\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Jsonnet\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:golang/github.com/google/go-jsonnet@v0.22.0#cmd/jsonnetfmt\n\nbin:\n  jsonnetfmt: golang:jsonnetfmt\n"
  },
  {
    "path": "packages/julia-lsp/package.yaml",
    "content": "---\nname: julia-lsp\ndescription: An implementation of the Microsoft Language Server Protocol for the Julia language.\nhomepage: https://github.com/julia-vscode/LanguageServer.jl\nlanguages:\n  - Julia\nlicenses:\n  - MIT\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/mason-org/julia-lsp@v1.209.2\n  asset:\n    - target: unix\n      file: julia-lsp-{{version}}.zip:libexec/\n      bin: exec:libexec/bin/julia-lsp\n    - target: win\n      file: julia-lsp-{{version}}.zip\n      bin: bin/julia-lsp.cmd\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/julia-vscode/julia-vscode/master/package.json\n\nbin:\n  julia-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: julials\n"
  },
  {
    "path": "packages/jupytext/package.yaml",
    "content": "---\nname: jupytext\ndescription: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts\nhomepage: https://jupytext.readthedocs.io\nlicenses:\n  - MIT\nlanguages:\n  - Python\n  - Julia\n  - R\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/jupytext@1.19.1\n\nbin:\n  jupytext: pypi:jupytext\n"
  },
  {
    "path": "packages/just-lsp/package.yaml",
    "content": "---\nname: just-lsp\ndescription: just-lsp is a server implementation of the language server protocol for just, the command runner.\nhomepage: https://github.com/terror/just-lsp/releases\nlicenses:\n  - CC0-1.0\nlanguages:\n  - Just\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/terror/just-lsp@0.4.3\n  asset:\n    - target: darwin_arm64\n      file: just-lsp-{{version}}-aarch64-apple-darwin.tar.gz\n      bin: just-lsp\n    - target: win_arm64\n      file: just-lsp-{{version}}-aarch64-pc-windows-msvc.zip\n      bin: just-lsp.exe\n    - target: linux_arm64_gnu\n      file: just-lsp-{{version}}-aarch64-unknown-linux-gnu.tar.gz\n      bin: just-lsp\n    - target: linux_arm64_musl\n      file: just-lsp-{{version}}-aarch64-unknown-linux-musl.tar.gz\n      bin: just-lsp\n    - target: linux_arm_gnu\n      file: just-lsp-{{version}}-arm-unknown-linux-gnueabihf.tar.gz\n      bin: just-lsp\n    - target: linux_armv7_gnu\n      file: just-lsp-{{version}}-armv7-unknown-linux-gnueabihf.tar.gz\n      bin: just-lsp\n    - target: linux_arm\n      file: just-lsp-{{version}}-armv7-unknown-linux-musleabihf.tar.gz\n      bin: just-lsp\n    - target: darwin_x64\n      file: just-lsp-{{version}}-x86_64-apple-darwin.tar.gz\n      bin: just-lsp\n    - target: win_x64\n      file: just-lsp-{{version}}-x86_64-pc-windows-msvc.zip\n      bin: just-lsp.exe\n    - target: linux_x64_musl\n      file: just-lsp-{{version}}-x86_64-unknown-linux-musl.tar.gz\n      bin: just-lsp\n    - target: linux_x64_gnu\n      file: just-lsp-{{version}}-x86_64-unknown-linux-gnu.tar.gz\n      bin: just-lsp\n\nbin:\n  just-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: just\n"
  },
  {
    "path": "packages/kakehashi/package.yaml",
    "content": "---\nname: kakehashi\ndescription: Language server that bridges the gap between languages, editors, and tooling\nhomepage: https://github.com/atusy/kakehashi\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\nsource:\n  id: pkg:github/atusy/kakehashi@v0.5.0\n  asset:\n    - target: darwin_x64\n      file: kakehashi-{{ version }}-x86_64-apple-darwin.tar.gz\n      bin: kakehashi\n    - target: darwin_arm64\n      file: kakehashi-{{ version }}-aarch64-apple-darwin.tar.gz\n      bin: kakehashi\n    - target: linux_x64\n      file: kakehashi-{{ version }}-x86_64-unknown-linux-gnu.tar.gz\n      bin: kakehashi\n    - target: linux_arm64\n      file: kakehashi-{{ version }}-aarch64-unknown-linux-gnu.tar.gz\n      bin: kakehashi\n    - target: win_x64\n      file: kakehashi-{{ version }}-x86_64-pc-windows-msvc.zip\n      bin: kakehashi.exe\n\nbin:\n  kakehashi: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: kakehashi\n"
  },
  {
    "path": "packages/kcl/package.yaml",
    "content": "---\nname: kcl\ndescription: |\n  KCL is an open-source, constraint-based record and functional language that enhances the writing of complex\n  configurations, including those for cloud-native scenarios.\nhomepage: https://kcl-lang.io\nlicenses:\n  - Apache-2.0\nlanguages:\n  - KCL\ncategories:\n  - Compiler\n  - Formatter\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:github/kcl-lang/kcl@v0.11.2\n  asset:\n    - target: darwin_x64\n      file: kclvm-{{version}}-darwin-amd64.tar.gz\n      bin:\n        kcl: exec:kclvm/bin/kclvm_cli\n        kcl_language_server: exec:kclvm/bin/kcl-language-server\n\n    - target: darwin_arm64\n      file: kclvm-{{version}}-darwin-arm64.tar.gz\n      bin:\n        kcl: exec:kclvm/bin/kclvm_cli\n        kcl_language_server: exec:kclvm/bin/kcl-language-server\n\n    - target: linux_x64_gnu\n      file: kclvm-{{version}}-linux-amd64.tar.gz\n      bin:\n        kcl: exec:kclvm/bin/kclvm_cli\n        kcl_language_server: exec:kclvm/bin/kcl-language-server\n\n    - target: win_x64\n      file: kclvm-{{version}}-windows.zip\n      bin:\n        kcl: bin/kclvm_cli.exe\n        kcl_language_server: bin/kcl-language-server.exe\n\nbin:\n  kcl: \"{{source.asset.bin.kcl}}\"\n  kcl-language-server: \"{{source.asset.bin.kcl_language_server}}\"\n\nneovim:\n  lspconfig: kcl\n"
  },
  {
    "path": "packages/kdlfmt/package.yaml",
    "content": "---\nname: kdlfmt\ndescription: A code formatter for KDL documents.\nhomepage: https://github.com/hougesen/kdlfmt\nlicenses:\n  - MIT\nlanguages:\n  - KDL\ncategories:\n  - Formatter\nsource:\n  id: pkg:github/hougesen/kdlfmt@v0.1.6\n  asset:\n    - target: darwin_arm64\n      file: kdlfmt-aarch64-apple-darwin.tar.xz\n      bin: kdlfmt-aarch64-apple-darwin/kdlfmt\n    - target: darwin_x64\n      file: kdlfmt-x86_64-apple-darwin.tar.xz\n      bin: kdlfmt-x86_64-apple-darwin/kdlfmt\n    - target: linux_arm64_gnu\n      file: kdlfmt-aarch64-unknown-linux-gnu.tar.xz\n      bin: kdlfmt-aarch64-unknown-linux-gnu/kdlfmt\n    - target: linux_x64_gnu\n      file: kdlfmt-x86_64-unknown-linux-gnu.tar.xz\n      bin: kdlfmt-x86_64-unknown-linux-gnu/kdlfmt\n    - target: win_x86\n      file: kdlfmt-x86_64-pc-windows-msvc.zip\n      bin: kdlfmt.exe\n    - target: win_x64\n      file: kdlfmt-x86_64-pc-windows-msvc.zip\n      bin: kdlfmt.exe\nbin:\n  kdlfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/kos-language-server/package.yaml",
    "content": "---\nname: kos-language-server\ndescription: Language Server for Kerboscript from the kOS Kerbal Space Program mod.\nhomepage: https://github.com/jonnyboyC/kos-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Kerboscript\ncategories:\n  - LSP\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/kos-language-server@1.1.5\n\nbin:\n  kls: npm:kls\n"
  },
  {
    "path": "packages/kotlin-debug-adapter/package.yaml",
    "content": "---\nname: kotlin-debug-adapter\ndescription: Kotlin/JVM debugging for any editor/IDE using the Debug Adapter Protocol.\nhomepage: https://github.com/fwcd/kotlin-debug-adapter\nlicenses:\n  - MIT\nlanguages:\n  - Kotlin\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/fwcd/kotlin-debug-adapter@0.4.4\n  asset:\n    - target: [darwin_x64, darwin_arm64, linux_x64, linux_arm64]\n      file: adapter.zip\n      bin: adapter/bin/kotlin-debug-adapter\n    - target: [win_x64, win_arm64]\n      file: adapter.zip\n      bin: adapter/bin/kotlin-debug-adapter.bat\n\nbin:\n  kotlin-debug-adapter: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/kotlin-language-server/package.yaml",
    "content": "---\nname: kotlin-language-server\ndescription: Kotlin code completion, linting and more for any editor/IDE using the Language Server Protocol.\nhomepage: https://github.com/fwcd/kotlin-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Kotlin\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/fwcd/kotlin-language-server@1.3.13\n  asset:\n    - target: unix\n      file: server.zip\n      bin: server/bin/kotlin-language-server\n    - target: win\n      file: server.zip\n      bin: server/bin/kotlin-language-server.bat\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/fwcd/vscode-kotlin/master/package.json\n\nbin:\n  kotlin-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: kotlin_language_server\n"
  },
  {
    "path": "packages/kotlin-lsp/package.yaml",
    "content": "---\nname: kotlin-lsp\ndescription: Kotlin Language Server and plugin for Visual Studio Code\nhomepage: https://github.com/Kotlin/kotlin-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Kotlin\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=regex:^kotlin-lsp/v(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$\n  # renovate:datasource=github-releases\n  id: pkg:generic/Kotlin/kotlin-lsp@kotlin-lsp/v262.2310.0\n  download:\n    - target: darwin_x64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-mac-x64.zip\n      bin: kotlin-lsp.sh\n    - target: darwin_arm64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-mac-aarch64.zip\n      bin: kotlin-lsp.sh\n    - target: linux_x64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-linux-x64.zip\n      bin: kotlin-lsp.sh\n    - target: linux_arm64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-linux-aarch64.zip\n      bin: kotlin-lsp.sh\n    - target: win_x64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-win-x64.zip\n      bin: kotlin-lsp.cmd\n    - target: win_arm64\n      files:\n        kotlin-lsp.zip: https://download-cdn.jetbrains.com/kotlin-lsp/{{ version | strip_prefix \"kotlin-lsp/v\" }}/kotlin-lsp-{{ version | strip_prefix \"kotlin-lsp/v\" }}-win-aarch64.zip\n      bin: kotlin-lsp.cmd\n\nbin:\n  kotlin-lsp: \"{{source.download.bin}}\"\n\nneovim:\n  lspconfig: kotlin_lsp\n"
  },
  {
    "path": "packages/ktfmt/package.yaml",
    "content": "---\nname: ktfmt\ndescription: A program that reformats Kotlin source code to comply with the common community conventions.\nhomepage: https://github.com/facebook/ktfmt\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Kotlin\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/facebook/ktfmt@v0.61\n  asset:\n    file: ktfmt-{{ version | strip_prefix \"v\" }}-with-dependencies.jar\n\nbin:\n  ktfmt: java-jar:{{source.asset.file}}\n"
  },
  {
    "path": "packages/ktlint/package.yaml",
    "content": "---\nname: ktlint\ndescription: An anti-bikeshedding Kotlin linter with built-in formatter.\nhomepage: https://github.com/pinterest/ktlint\nlicenses:\n  - MIT\nlanguages:\n  - Kotlin\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/pinterest/ktlint@1.8.0\n  asset:\n    - target: unix\n      file: ktlint\n      bin: ktlint\n    - target: win\n      file: ktlint:ktlint.jar\n      bin: java-jar:ktlint.jar\n\nbin:\n  ktlint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/kube-linter/package.yaml",
    "content": "---\nname: kube-linter\ndescription: |\n  KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices.\nhomepage: https://docs.kubelinter.io\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Helm\n  - YAML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/stackrox/kube-linter@v0.8.3\n  asset:\n    - target: darwin_x64\n      file: kube-linter-darwin.tar.gz\n      bin: kube-linter\n    - target: darwin_arm64\n      file: kube-linter-darwin_arm64.tar.gz\n      bin: kube-linter\n    - target: linux_x64\n      file: kube-linter-linux.tar.gz\n      bin: kube-linter\n    - target: linux_arm64\n      file: kube-linter-linux_arm64.tar.gz\n      bin: kube-linter\n    - target: win_x64\n      file: kube-linter-windows.tar.gz\n      bin: kube-linter.exe\n\nbin:\n  kube-linter: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/kubescape/package.yaml",
    "content": "---\nname: kubescape\ndescription: |\n  Kubescape is an open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters. It includes risk analysis, security, compliance, and misconfiguration scanning, saving Kubernetes users and administrators precious time, effort, and resources.\nhomepage: https://kubescape.io/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Helm\n  - YAML\ncategories:\n  - Linter\n  - Runtime\n\nsource:\n  id: pkg:github/kubescape/kubescape@v4.0.5\n  asset:\n  - target: darwin_x64\n    file:  kubescape_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n    bin: kubescape\n  - target: darwin_arm64\n    file: kubescape_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n    bin: kubescape\n  - target: linux_x64\n    file: kubescape_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n    bin:  kubescape\n  - target: linux_arm64\n    file: kubescape_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz \n    bin: kubescape\n  - target: win_x64\n    file: kubescape_{{ version | strip_prefix \"v\" }}_windows_amd64.tar.gz\n    bin:  kubescape.exe\n  - target: win_arm64\n    file: kubescape_{{ version | strip_prefix \"v\" }}_windows_arm64.tar.gz\n    bin: kubescape.exe\n\nbin:\n  kubescape: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/kulala-fmt/package.yaml",
    "content": "---\nname: kulala-fmt\ndescription: |\n  kulala-fmt\n  An opinionated .http and .rest files linter and formatter.\nhomepage: https://github.com/mistweaverco/kulala-fmt\nlicenses:\n  - MIT\nlanguages:\n  - http\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:npm/%40mistweaverco/kulala-fmt@2.11.0\n\nbin:\n  kulala-fmt: npm:kulala-fmt\n"
  },
  {
    "path": "packages/language-server-bitbake/package.yaml",
    "content": "---\nname: language-server-bitbake\ndescription: A language server for BitBake.\nhomepage: https://github.com/yoctoproject/vscode-bitbake\nlicenses:\n  - MIT\nlanguages:\n  - BitBake\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/language-server-bitbake@2.8.0\n\nbin:\n  language-server-bitbake: npm:language-server-bitbake\n"
  },
  {
    "path": "packages/laravel-ls/package.yaml",
    "content": "---\nname: laravel-ls\ndescription: Laravel Language Server written in go.\nhomepage: https://github.com/laravel-ls/laravel-ls\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - PHP\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/laravel-ls/laravel-ls@v0.1.0\n  asset:\n    - target: linux_x64_gnu\n      file: laravel-ls-{{version}}-linux-amd64\n    - target: win_x64\n      file: laravel-ls-{{version}}-windows-amd64\n    - target: darwin_x64\n      file: laravel-ls-{{version}}-darwin-amd64\n    - target: darwin_arm64\n      file: laravel-ls-{{version}}-darwin-arm64\n\nbin:\n  laravel-ls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: laravel_ls\n"
  },
  {
    "path": "packages/latexindent/package.yaml",
    "content": "---\nname: latexindent\ndescription: |\n  latexindent.pl is a perl script to beautify/tidy/format/indent (add horizontal leading space to) code within\n  environments, commands, after headings and within special code blocks.\nhomepage: https://github.com/cmhughes/latexindent.pl\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - LaTeX\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/cmhughes/latexindent.pl@V3.24.4\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: latexindent-macos\n    - target: linux_x64_gnu\n      file: latexindent-linux\n    - target: win_x64\n      file: latexindent.exe\n\nbin:\n  latexindent: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/lean-language-server/package.yaml",
    "content": "---\nname: lean-language-server\ndescription: Lean3 Language Server.\nhomepage: https://www.npmjs.com/package/lean-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Lean 3\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/lean-language-server@3.4.0\n\nbin:\n  lean-language-server: npm:lean-language-server\n"
  },
  {
    "path": "packages/lelwel/package.yaml",
    "content": "---\nname: lelwel\ndescription: LL(1) parser generator for Rust.\nhomepage: https://github.com/0x2a-42/lelwel\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Lelwel\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/lelwel@0.10.4?features=lsp,cli\n\nbin:\n  lelwel-ls: cargo:lelwel-ls\n  llw: cargo:llw\n\nneovim:\n  lspconfig: lelwel_ls\n"
  },
  {
    "path": "packages/lemminx/package.yaml",
    "content": "---\nname: lemminx\ndescription: XML Language Server.\nhomepage: https://github.com/eclipse/lemminx\nlicenses:\n  - EPL-2.0\nlanguages:\n  - XML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/redhat-developer/vscode-xml@0.29.0\n  asset:\n    - target: darwin_x64\n      file: lemminx-osx-x86_64.zip\n      bin: lemminx-osx-x86_64\n    - target: darwin_arm64\n      file: lemminx-osx-aarch_64.zip\n      bin: lemminx-osx-aarch_64\n    - target: linux_x64_gnu\n      file: lemminx-linux.zip\n      bin: lemminx-linux\n    - target: [win_x86, win_x64]\n      file: lemminx-win32.zip\n      bin: lemminx-win32.exe\n\nbin:\n  lemminx: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: lemminx\n"
  },
  {
    "path": "packages/lemmy-help/package.yaml",
    "content": "---\nname: lemmy-help\ndescription: Every one needs help, so lemmy-help you! A CLI to generate vim/nvim help doc from emmylua.\nhomepage: https://github.com/numToStr/lemmy-help\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories: []\n\nsource:\n  id: pkg:github/numToStr/lemmy-help@v0.11.0\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: lemmy-help-x86_64-apple-darwin.tar.gz\n      bin: lemmy-help\n    - target: linux_x64_gnu\n      file: lemmy-help-x86_64-unknown-linux-gnu.tar.gz\n      bin: lemmy-help\n    - target: linux_x64\n      file: lemmy-help-x86_64-unknown-linux-musl.tar.gz\n      bin: lemmy-help\n    - target: linux_arm64_gnu\n      file: lemmy-help-aarch64-unknown-linux-gnu.tar.gz\n      bin: lemmy-help\n    - target: linux_arm64\n      file: lemmy-help-aarch64-unknown-linux-musl.tar.gz\n      bin: lemmy-help\n    - target: win_arm64\n      file: lemmy-help-x86_64-pc-windows-msvc.zip\n      bin: lemmy-help.exe\n\nbin:\n  lemmy-help: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/lemonade/package.yaml",
    "content": "---\nname: lemonade\ndescription: Lemonade is a remote utility tool. (copy, paste and open browser) over TCP.\nhomepage: https://github.com/lemonade-command/lemonade\nlicenses:\n  - MIT\nlanguages: []\ncategories: []\n\nsource:\n  id: pkg:golang/github.com/lemonade-command/lemonade@v1.1.2\n\nbin:\n  lemonade: golang:lemonade\n"
  },
  {
    "path": "packages/lexical/package.yaml",
    "content": "---\nname: lexical\ndescription: Lexical is a next-generation elixir language server\nhomepage: https://github.com/lexical-lsp/lexical\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Elixir\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/lexical-lsp/lexical@v0.7.3\n  asset:\n    - target: unix\n      file: lexical-{{version}}.zip:libexec/\n      bin: exec:libexec/lexical/bin/start_lexical.sh\n\nbin:\n  lexical: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: lexical\n"
  },
  {
    "path": "packages/llm-ls/package.yaml",
    "content": "---\nname: llm-ls\ndescription: LSP server leveraging AI/LLMs based for code completion.\nhomepage: https://github.com/huggingface/llm-ls\nlicenses:\n  - Apache-2.0\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/huggingface/llm-ls@0.5.3\n  asset:\n    - target: darwin_x64\n      file: llm-ls-x86_64-apple-darwin.gz\n      bin: llm-ls-x86_64-apple-darwin\n    - target: darwin_arm64\n      file: llm-ls-aarch64-apple-darwin.gz\n      bin: llm-ls-aarch64-apple-darwin\n    - target: linux_x64_musl\n      file: llm-ls-x86_64-unknown-linux-musl.gz\n      bin: llm-ls-x86_64-unknown-linux-musl\n    - target: linux_arm64_gnu\n      file: llm-ls-aarch64-unknown-linux-gnu.gz\n      bin: llm-ls-aarch64-unknown-linux-gnu\n    - target: linux_x64_gnu\n      file: llm-ls-x86_64-unknown-linux-gnu.gz\n      bin: llm-ls-x86_64-unknown-linux-gnu\n    - target: win_x64\n      file: llm-ls-x86_64-pc-windows-msvc.zip\n      bin: llm-ls.exe\n    - target: win_x86\n      file: llm-ls-i686-pc-windows-msvc.zip\n      bin: llm-ls.exe\n\nbin:\n  llm-ls: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/local-lua-debugger-vscode/package.yaml",
    "content": "---\nname: local-lua-debugger-vscode\ndescription: A simple Lua debugger which requires no additional dependencies.\nhomepage: https://github.com/tomblind/local-lua-debugger-vscode\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - DAP\n\nsource:\n  id: pkg:openvsx/tomblind/local-lua-debugger-vscode@0.3.3\n  download:\n    file: tomblind.local-lua-debugger-vscode-{{version}}.vsix\n\nshare:\n  local-lua-debugger-vscode/: extension/\n"
  },
  {
    "path": "packages/ltex-ls/package.yaml",
    "content": "---\nname: ltex-ls\ndescription: |\n  LTeX Language Server: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others.\nhomepage: https://valentjn.github.io/ltex/\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Text\n  - Markdown\n  - LaTeX\n  - reStructuredText\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/valentjn/ltex-ls@16.0.0\n  asset:\n    # The platform-specific releases bundle a java runtime engine, and are\n    # therefore preferable to avoid external dependencies (see #2837).\n    - target: darwin\n      file: ltex-ls-{{version}}-mac-x64.tar.gz\n      bin:\n        lsp: ltex-ls-{{version}}/bin/ltex-ls\n        cli: ltex-ls-{{version}}/bin/ltex-cli\n    - target: win\n      file: ltex-ls-{{version}}-windows-x64.zip\n      bin:\n        lsp: ltex-ls-{{version}}/bin/ltex-ls.bat\n        cli: ltex-ls-{{version}}/bin/ltex-cli.bat\n    # using platform-independent release to support linux arm64\n    # (see https://github.com/mason-org/mason-registry/pull/2837#pullrequestreview-1686482498)\n    - target: linux\n      file: ltex-ls-{{version}}.tar.gz\n      bin:\n        lsp: ltex-ls-{{version}}/bin/ltex-ls\n        cli: ltex-ls-{{version}}/bin/ltex-cli\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/valentjn/vscode-ltex/develop/package.json\n\nbin:\n  ltex-ls: \"{{source.asset.bin.lsp}}\"\n  ltex-cli: \"{{source.asset.bin.cli}}\"\n\nneovim:\n  lspconfig: ltex\n"
  },
  {
    "path": "packages/ltex-ls-plus/package.yaml",
    "content": "---\nname: ltex-ls-plus\ndescription: |\n  LTeX Language Server+: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others.\nhomepage: https://ltex-plus.github.io/ltex-plus/\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Text\n  - Markdown\n  - LaTeX\n  - reStructuredText\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/ltex-plus/ltex-ls-plus@18.6.1\n  asset:\n    # The platform-specific releases bundle a java runtime engine, and are\n    # therefore preferable to avoid external dependencies (see #2837).\n    - target: linux_arm64_gnu\n      file: ltex-ls-plus-{{version}}-linux-aarch64.tar.gz\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus\n    - target: linux_x64_gnu\n      file: ltex-ls-plus-{{version}}-linux-x64.tar.gz\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus\n    - target: darwin_arm64\n      file: ltex-ls-plus-{{version}}-mac-aarch64.tar.gz\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus\n    - target: darwin_x64\n      file: ltex-ls-plus-{{version}}-mac-x64.tar.gz\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus\n    - target: win_x64\n      file: ltex-ls-plus-{{version}}-windows-x64.zip\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus.bat\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus.bat\n    - target: win_arm64\n      file: ltex-ls-plus-{{version}}-windows-aarch64.zip\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus.bat\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus.bat\n    # using platform-independent release to support non-gnu linux\n    - target: linux\n      file: ltex-ls-plus-{{version}}.tar.gz\n      bin:\n        lsp: ltex-ls-plus-{{version}}/bin/ltex-ls-plus\n        cli: ltex-ls-plus-{{version}}/bin/ltex-cli-plus\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/ltex-plus/vscode-ltex-plus/develop/package.json\n\nbin:\n  ltex-ls-plus: \"{{source.asset.bin.lsp}}\"\n  ltex-cli-plus: \"{{source.asset.bin.cli}}\"\n\nneovim:\n  lspconfig: ltex_plus\n"
  },
  {
    "path": "packages/lua-language-server/package.yaml",
    "content": "---\nname: lua-language-server\ndescription: A language server that offers Lua language support - programmed in Lua.\nhomepage: https://github.com/LuaLS/lua-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/LuaLS/lua-language-server@3.18.2\n  asset:\n    - target: darwin_arm64\n      file: lua-language-server-{{version}}-darwin-arm64.tar.gz:libexec/\n      bin: exec:libexec/bin/lua-language-server\n    - target: darwin_x64\n      file: lua-language-server-{{version}}-darwin-x64.tar.gz:libexec/\n      bin: exec:libexec/bin/lua-language-server\n    - target: linux_arm64_gnu\n      file: lua-language-server-{{version}}-linux-arm64.tar.gz:libexec/\n      bin: exec:libexec/bin/lua-language-server\n    - target: linux_x64_gnu\n      file: lua-language-server-{{version}}-linux-x64.tar.gz:libexec/\n      bin: exec:libexec/bin/lua-language-server\n    - target: linux_x64_musl\n      file: lua-language-server-{{version}}-linux-x64-musl.tar.gz:libexec/\n      bin: exec:libexec/bin/lua-language-server\n    - target: win_x64\n      file: lua-language-server-{{version}}-win32-x64.zip\n      bin: bin/lua-language-server.exe\n\n  version_overrides:\n    - constraint: semver:<=3.8.3\n      id: pkg:github/LuaLS/lua-language-server@3.8.3\n      asset:\n        - target: darwin_arm64\n          file: lua-language-server-{{version}}-darwin-arm64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: darwin_x64\n          file: lua-language-server-{{version}}-darwin-x64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: linux_x64_gnu\n          file: lua-language-server-{{version}}-linux-x64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: linux_x64_musl\n          file: lua-language-server-{{version}}-linux-x64-musl.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: win_x64\n          file: lua-language-server-{{version}}-win32-x64.zip\n          bin: bin/lua-language-server.exe\n    - constraint: semver:<=3.7.4\n      id: pkg:github/LuaLS/lua-language-server@3.7.4\n      asset:\n        - target: darwin_arm64\n          file: lua-language-server-{{version}}-darwin-arm64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: darwin_x64\n          file: lua-language-server-{{version}}-darwin-x64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: linux_arm64_gnu\n          file: lua-language-server-{{version}}-linux-arm64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: linux_x64_gnu\n          file: lua-language-server-{{version}}-linux-x64.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: linux_x64_musl\n          file: lua-language-server-{{version}}-linux-x64-musl.tar.gz:libexec/\n          bin: exec:libexec/bin/lua-language-server\n        - target: win_x64\n          file: lua-language-server-{{version}}-win32-x64.zip\n          bin: bin/lua-language-server.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/LuaLS/vscode-lua/master/package.json\n\nbin:\n  lua-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: lua_ls\n"
  },
  {
    "path": "packages/luacheck/package.yaml",
    "content": "---\nname: luacheck\ndescription: A tool for linting and static analysis of Lua code.\nhomepage: https://github.com/lunarmodules/luacheck\nlicenses:\n  - MIT\nlanguages:\n  - Lua\ncategories:\n  - Linter\n\nsource:\n  id: pkg:luarocks/luacheck@1.1.0\n\nbin:\n  luacheck: luarocks:luacheck\n"
  },
  {
    "path": "packages/luaformatter/package.yaml",
    "content": "---\nname: luaformatter\ndescription: Code formatter for Lua.\nhomepage: https://github.com/Koihik/LuaFormatter\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Lua\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:luarocks/luaformatter@scm-1?repository_url=https://luarocks.org/dev\n\nbin:\n  lua-format: luarocks:lua-format\n"
  },
  {
    "path": "packages/luau-lsp/package.yaml",
    "content": "---\nname: luau-lsp\ndescription: An implementation of a language server for the Luau programming language.\nhomepage: https://github.com/JohnnyMorganz/luau-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Luau\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/JohnnyMorganz/luau-lsp@1.66.0\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: luau-lsp-macos.zip\n      bin: luau-lsp\n    - target: linux_x64\n      file: luau-lsp-linux-x86_64.zip\n      bin: luau-lsp\n    - target: linux_arm64\n      file: luau-lsp-linux-arm64.zip\n      bin: luau-lsp\n    - target: win_x64\n      file: luau-lsp-win64.zip\n      bin: luau-lsp.exe\n\n  version_overrides:\n    - constraint: semver:<=1.52.1\n      id: pkg:github/JohnnyMorganz/luau-lsp@1.52.1\n      asset:\n        - target: [darwin_arm64, darwin_x64]\n          file: luau-lsp-macos.zip\n          bin: luau-lsp\n        - target: linux_x64\n          file: luau-lsp-linux.zip\n          bin: luau-lsp\n        - target: linux_arm64\n          file: luau-lsp-linux-arm64.zip\n          bin: luau-lsp\n        - target: win_x64\n          file: luau-lsp-win64.zip\n          bin: luau-lsp.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/JohnnyMorganz/luau-lsp/{{version}}/editors/code/package.json\n\nbin:\n  luau-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: luau_lsp\n"
  },
  {
    "path": "packages/lwc-language-server/package.yaml",
    "content": "---\nname: lwc-language-server\ndescription: Language Server for Lightning Web Components.\nhomepage: https://github.com/forcedotcom/lightning-language-server/\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - HTML\n  - JavaScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40salesforce/lwc-language-server@4.12.13\n\nbin:\n  lwc-language-server: npm:lwc-language-server\n\nneovim:\n  lspconfig: lwc_ls\n"
  },
  {
    "path": "packages/m68k-lsp-server/package.yaml",
    "content": "---\nname: m68k-lsp-server\ndescription: Language Server Protocol implementation for Motorola 68000 assembly\nhomepage: https://github.com/grahambates/m68k-lsp\nlicenses:\n  - MIT\nlanguages:\n  - M68K\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/m68k-lsp-server@0.11.2\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/grahambates/m68k-lsp/v{{version}}/client/package.json\n\nbin:\n  m68k-lsp-server: npm:m68k-lsp-server\n"
  },
  {
    "path": "packages/markdown-oxide/package.yaml",
    "content": "---\nname: markdown-oxide\ndescription: |\n  Markdown language server with advanced linking support made to be completely compatible with Obsidian; An Obsidian\n  Language Server.\nhomepage: https://github.com/Feel-ix-343/markdown-oxide\nlicenses:\n  - CC0-1.0\nlanguages:\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/feel-ix-343/markdown-oxide@v0.25.10\n  asset:\n    - target: darwin_x64\n      file:  markdown-oxide-{{version}}-x86_64-apple-darwin.tar.gz\n      bin: markdown-oxide-{{version}}-x86_64-apple-darwin/markdown-oxide\n    - target: darwin_arm64\n      file:  markdown-oxide-{{version}}-aarch64-apple-darwin.tar.gz\n      bin: markdown-oxide-{{version}}-aarch64-apple-darwin/markdown-oxide\n    - target: linux_x64_gnu\n      file: markdown-oxide-{{version}}-x86_64-unknown-linux-gnu.tar.gz\n      bin: markdown-oxide-{{version}}-x86_64-unknown-linux-gnu/markdown-oxide\n    - target: linux_arm64_gnu\n      file: markdown-oxide-{{version}}-aarch64-unknown-linux-gnu.tar.gz\n      bin: markdown-oxide-{{version}}-aarch64-unknown-linux-gnu/markdown-oxide\n    - target: win_x64\n      file: markdown-oxide-{{version}}-x86_64-pc-windows-gnu.zip\n      bin: markdown-oxide-{{version}}-x86_64-pc-windows-gnu/markdown-oxide.exe\n\nbin:\n  markdown-oxide: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: markdown_oxide\n"
  },
  {
    "path": "packages/markdown-toc/package.yaml",
    "content": "---\nname: markdown-toc\ndescription: API and CLI for generating a markdown TOC (table of contents) for a README or any markdown files.\nhomepage: https://github.com/jonschlinkert/markdown-toc\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/markdown-toc@1.2.0\n\nbin:\n  markdown-toc: npm:markdown-toc\n"
  },
  {
    "path": "packages/markdownlint/package.yaml",
    "content": "---\nname: markdownlint\ndescription: A Node.js style checker and lint tool for Markdown/CommonMark files.\nhomepage: https://github.com/igorshubovych/markdownlint-cli\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/markdownlint-cli@0.48.0\n\nbin:\n  markdownlint: npm:markdownlint\n"
  },
  {
    "path": "packages/markdownlint-cli2/package.yaml",
    "content": "---\nname: markdownlint-cli2\ndescription: A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the markdownlint library\nhomepage: https://github.com/DavidAnson/markdownlint-cli2\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/markdownlint-cli2@0.22.1\n\nbin:\n  markdownlint-cli2: npm:markdownlint-cli2\n"
  },
  {
    "path": "packages/markmap-cli/package.yaml",
    "content": "---\nname: markmap-cli\ndescription: Visualize your Markdown as mindmaps.\nhomepage: https://github.com/markmap/markmap\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories: []\n\nsource:\n  id: pkg:npm/markmap-cli@0.18.12\n\nbin:\n  markmap: npm:markmap\n"
  },
  {
    "path": "packages/marksman/package.yaml",
    "content": "---\nname: marksman\ndescription: Markdown LSP server providing completion, cross-references, diagnostics, and more.\nhomepage: https://github.com/artempyanykh/marksman\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/artempyanykh/marksman@2026-02-08\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: marksman-macos\n    - target: linux_x64\n      file: marksman-linux-x64\n    - target: linux_arm64\n      file: marksman-linux-arm64\n    - target: win_x64\n      file: marksman.exe\n\nbin:\n  marksman: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: marksman\n"
  },
  {
    "path": "packages/markuplint/package.yaml",
    "content": "---\nname: markuplint\ndescription: An HTML linter for all markup developers.\nhomepage: https://markuplint.dev\nlicenses:\n  - MIT\nlanguages:\n  - HTML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/markuplint@4.18.1\n\nbin:\n  markuplint: npm:markuplint\n"
  },
  {
    "path": "packages/matlab-language-server/package.yaml",
    "content": "---\nname: matlab-language-server\ndescription: Language Server Protocol implementation for the MATLAB language.\nhomepage: https://github.com/mathworks/MATLAB-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Matlab\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/mathworks/MATLAB-language-server@22edf927b5828fb8bc06b8cd922ab90b030323df\n  build:\n    run: |\n      npm install\n      npm run package\n\nbin:\n  matlab-language-server: node:out/index.js\n\nneovim:\n  lspconfig: matlab_ls\n"
  },
  {
    "path": "packages/mbake/package.yaml",
    "content": "---\nname: mbake\ndescription: Makefile formatter and linter.\nhomepage: https://github.com/EbodShojaei/bake\nlicenses:\n  - MIT\nlanguages:\n  - Makefile\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:pypi/mbake@1.4.6\n\nbin:\n  mbake: pypi:mbake\n"
  },
  {
    "path": "packages/mdformat/package.yaml",
    "content": "---\nname: mdformat\ndescription: CommonMark compliant Markdown formatter.\nhomepage: https://github.com/executablebooks/mdformat\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/mdformat@1.0.0\n\nbin:\n  mdformat: pypi:mdformat\n"
  },
  {
    "path": "packages/mdsf/package.yaml",
    "content": "---\nname: mdsf\ndescription: Format markdown code blocks using your favorite code formatters.\nhomepage: https://github.com/hougesen/mdsf\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:cargo/mdsf@0.12.0\n\nbin:\n  mdsf: cargo:mdsf\n"
  },
  {
    "path": "packages/mdslw/package.yaml",
    "content": "---\nname: mdslw\ndescription: The MarkDown Sentence Line Wrapper, an auto-formatter that prepares your markdown for easy diff'ing.\nhomepage: https://github.com/razziel89/mdslw\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/razziel89/mdslw@0.17.1\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: mdslw_x86_64-apple-darwin\n    - target: linux_x64\n      file: mdslw_x86_64-unknown-linux-musl\n    - target: win_x64\n      file: mdslw_x86_64-pc-windows-gnu.exe\n\nbin:\n  mdslw: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/mdx-analyzer/package.yaml",
    "content": "---\nname: mdx-analyzer\ndescription: |\n  This package provides a language server for MDX. The language server provides IntelliSense based on TypeScript, as\n  well as some markdown specific features.\nhomepage: https://github.com/mdx-js/mdx-analyzer/tree/main/packages/language-server\nlicenses:\n  - MIT\nlanguages:\n  - MDX\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40mdx-js/language-server@0.6.3\n\nbin:\n  mdx-language-server: npm:mdx-language-server\n\nneovim:\n  lspconfig: mdx_analyzer\n"
  },
  {
    "path": "packages/mesonlsp/package.yaml",
    "content": "---\nname: mesonlsp\ndescription: An unofficial, unendorsed language server for meson written in C++\nhomepage: https://github.com/JCWasmx86/mesonlsp\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Meson\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/JCWasmx86/mesonlsp@v4.3.7\n  asset:\n    - target: linux_x64\n      file: mesonlsp-x86_64-unknown-linux-musl.zip\n      bin: mesonlsp\n    - target: linux_arm64\n      file: mesonlsp-aarch64-unknown-linux-musl.zip\n      bin: mesonlsp\n    - target: darwin_x64\n      file: mesonlsp-x86_64-apple-darwin.zip\n      bin: mesonlsp\n    - target: darwin_arm64\n      file: mesonlsp-aarch64-apple-darwin.zip\n      bin: mesonlsp\n    - target: win_x64\n      file: mesonlsp-x86_64-pc-windows-gnu.zip\n      bin: mesonlsp.exe\n\nbin:\n  mesonlsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: mesonlsp\n"
  },
  {
    "path": "packages/metamath-zero-lsp/package.yaml",
    "content": "---\nname: metamath-zero-lsp\ndescription: An MM0/MM1 server written in Rust.\nhomepage: https://github.com/digama0/mm0\nlicenses:\n  - CC0-1.0\nlanguages:\n  - Metamath Zero\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/digama0/mm0@6d5f0d4fae8e2e3ae0b998bcbaa9d059cad99fad\n  build:\n    - target: unix\n      run: |\n        cd mm0-rs\n        cargo build --release\n      bin: mm0-rs/target/release/mm0-rs\n    - target: win\n      run: |\n        Set-Location -Path .\\mm0-rs\n        cargo build --release\n      bin: mm0-rs/target/release/mm0-rs.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/digama0/mm0/{{version}}/vscode-mm0/package.json\n\nbin:\n  mm0-rs: \"{{source.build.bin}}\"\n\n# requires rustc 1.65+\nci_skip: true\n\nneovim:\n  lspconfig: mm0_ls\n"
  },
  {
    "path": "packages/millet/package.yaml",
    "content": "---\nname: millet\ndescription: A language server for Standard ML.\nhomepage: https://github.com/azdavis/millet\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Standard ML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/azdavis/millet@v0.15.1\n  asset:\n    - target: darwin_arm64\n      file: millet-ls-aarch64-apple-darwin.gz\n      bin: millet-ls-aarch64-apple-darwin\n    - target: win_arm64\n      file: millet-ls-aarch64-pc-windows-msvc.gz\n      bin: millet-ls-aarch64-pc-windows-msvc\n    - target: linux_arm64_gnu\n      file: millet-ls-aarch64-unknown-linux-gnu.gz\n      bin: millet-ls-aarch64-unknown-linux-gnu\n    - target: darwin_x64\n      file: millet-ls-x86_64-apple-darwin.gz\n      bin: millet-ls-x86_64-apple-darwin\n    - target: win_x64\n      file: millet-ls-x86_64-pc-windows-msvc.gz:millet-ls-x86_64-pc-windows-msvc.exe.gz\n      bin: millet-ls-x86_64-pc-windows-msvc.exe\n    - target: linux_x64_gnu\n      file: millet-ls-x86_64-unknown-linux-gnu.gz\n      bin: millet-ls-x86_64-unknown-linux-gnu\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/azdavis/millet/{{version}}/editors/vscode/package.json\n\nbin:\n  millet: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: millet\n"
  },
  {
    "path": "packages/miss_hit/package.yaml",
    "content": "---\nname: miss_hit\ndescription: Free and open source code quality tools for MATLAB and Octave.\nhomepage: https://misshit.org\nlicenses:\n  - AGPL-3.0-or-later\n  - GPL-3.0-or-later\nlanguages:\n  - Matlab\n  - Octave\ncategories:\n  - Formatter\n  - Linter\nsource:\n  id: pkg:pypi/miss-hit@0.9.44\nbin:\n  mh_style: pypi:mh_style\n  mh_lint: pypi:mh_lint\n"
  },
  {
    "path": "packages/misspell/package.yaml",
    "content": "---\nname: misspell\ndescription: Correct commonly misspelled English words in source files.\nhomepage: https://github.com/client9/misspell\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/github.com/client9/misspell@v0.3.4#cmd/misspell\n\nbin:\n  misspell: golang:misspell\n"
  },
  {
    "path": "packages/mmdc/package.yaml",
    "content": "---\nname: mmdc\ndescription: Command line tool for the Mermaid library.\nhomepage: https://github.com/mermaid-js/mermaid-cli\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\n  - Mermaid\ncategories: []\n\nsource:\n  id: pkg:npm/@mermaid-js/mermaid-cli@11.12.0\n\nbin:\n  mmdc: npm:mmdc\n"
  },
  {
    "path": "packages/mockdebug/package.yaml",
    "content": "---\nname: mockdebug\ndescription: |\n  Mock Debug simulates a debug adapter. It supports step, continue, breakpoints, exceptions, and variable access but it\n  is not connected to any real debugger.\nhomepage: https://github.com/microsoft/vscode-mock-debug\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - DAP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/microsoft/vscode-mock-debug@v0.52.0\n  build:\n    run: |\n      npm install\n      npm run compile\n      npm install --production\n\nbin:\n  mock-debug-adapter: node:out/debugAdapter.js\n"
  },
  {
    "path": "packages/motoko-lsp/package.yaml",
    "content": "---\nname: motoko-lsp\ndescription: Language server for the Motoko programming language.\nhomepage: https://github.com/dfinity/vscode-motoko\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Motoko\ncategories:\n  - LSP\n\nsource:\n  id: pkg:openvsx/dfinity-foundation/vscode-motoko@0.18.7\n  download:\n    file: dfinity-foundation.vscode-motoko-{{version}}.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/dfinity/vscode-motoko/v{{version}}/package.json\n\nbin:\n  motoko-lsp: node:extension/out/server.js\n\nneovim:\n  lspconfig: motoko_lsp\n"
  },
  {
    "path": "packages/move-analyzer/package.yaml",
    "content": "---\nname: move-analyzer\ndescription: move-analyzer is a language server implementation for the Move programming language.\nhomepage: https://github.com/move-language/move\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Move\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/move-analyzer@ea70797099baea64f05194a918cebd69ed02b285?repository_url=https://github.com/move-language/move&rev=true&locked=false\n\nbin:\n  move-analyzer: cargo:move-analyzer\n\nneovim:\n  lspconfig: move_analyzer\n"
  },
  {
    "path": "packages/mpls/package.yaml",
    "content": "---\nname: mpls\ndescription: Markdown Preview Language Server\nhomepage: https://github.com/mhersson/mpls\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Markdown\ncategories:\n  - LSP\nsource:\n  id: pkg:github/mhersson/mpls@v0.21.0\n  asset:\n    - target: darwin_arm64\n      file: mpls_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: mpls\n    - target: darwin_x64\n      file: mpls_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n      bin: mpls\n    - target: linux_arm64_gnu\n      file: mpls_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: mpls\n    - target: linux_x64_gnu\n      file: mpls_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin: mpls\n    - target: win_arm64\n      file: mpls_{{ version | strip_prefix \"v\" }}_windows_arm64.zip\n      bin: mpls.exe\n    - target: win_x64\n      file: mpls_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: mpls.exe\nbin:\n  mpls: \"{{source.asset.bin}}\"\nneovim:\n  lspconfig: mpls\n"
  },
  {
    "path": "packages/mutt-language-server/package.yaml",
    "content": "---\nname: mutt-language-server\ndescription: A language server for (neo)mutt's muttrc.\nhomepage: https://github.com/neomutt/mutt-language-server\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/mutt-language-server@0.0.17\n\nbin:\n  mutt-language-server: pypi:mutt-language-server\n\nneovim:\n  lspconfig: mutt_ls\n"
  },
  {
    "path": "packages/mypy/package.yaml",
    "content": "---\nname: mypy\ndescription: Mypy is a static type checker for Python.\nhomepage: https://github.com/python/mypy\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:pypi/mypy@1.20.2\n\nbin:\n  mypy: pypi:mypy\n  dmypy: pypi:dmypy\n  mypyc: pypi:mypyc\n"
  },
  {
    "path": "packages/neocmakelsp/package.yaml",
    "content": "---\nname: neocmakelsp\ndescription: CMake LSP implementation based on Tower and Tree-sitter.\nhomepage: https://github.com/neocmakelsp/neocmakelsp\nlicenses:\n  - MIT\nlanguages:\n  - CMake\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/neocmakelsp/neocmakelsp@v0.10.2\n  asset:\n    - target: darwin\n      file: neocmakelsp-universal-apple-darwin.tar.gz\n      bin: neocmakelsp\n    - target: linux_arm64_gnu\n      file: neocmakelsp-aarch64-unknown-linux-gnu.tar.gz\n      bin: neocmakelsp\n    - target: linux_x64_gnu\n      file: neocmakelsp-x86_64-unknown-linux-gnu.tar.gz\n      bin: neocmakelsp\n    - target: linux_arm64\n      file: neocmakelsp-aarch64-unknown-linux-musl.tar.gz\n      bin: neocmakelsp\n    - target: linux_x64\n      file: neocmakelsp-x86_64-unknown-linux-musl.tar.gz\n      bin: neocmakelsp\n    - target: win_arm64\n      file: neocmakelsp-aarch64-pc-windows-msvc.zip\n      bin: neocmakelsp.exe\n    - target: win_x64\n      file: neocmakelsp-x86_64-pc-windows-msvc.zip\n      bin: neocmakelsp.exe\n\nbin:\n  neocmakelsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: neocmake\n"
  },
  {
    "path": "packages/netcoredbg/package.yaml",
    "content": "---\nname: netcoredbg\ndescription: NetCoreDbg is a managed code debugger with MI interface for CoreCLR.\nhomepage: https://github.com/Samsung/netcoredbg\nlicenses:\n  - MIT\nlanguages:\n  - .NET\n  - C#\n  - F#\ncategories:\n  - DAP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/Samsung/netcoredbg@3.1.3-1062\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: netcoredbg-osx-amd64.tar.gz:libexec/\n      bin: exec:libexec/netcoredbg/netcoredbg\n    - target: linux_arm64_gnu\n      file: netcoredbg-linux-arm64.tar.gz:libexec/\n      bin: exec:libexec/netcoredbg/netcoredbg\n    - target: linux_x64_gnu\n      file: netcoredbg-linux-amd64.tar.gz:libexec/\n      bin: exec:libexec/netcoredbg/netcoredbg\n    - target: win_x64\n      file: netcoredbg-win64.zip\n      bin: netcoredbg/netcoredbg.exe\n\nbin:\n  netcoredbg: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/nextflow-language-server/package.yaml",
    "content": "---\nname: nextflow-language-server\ndescription: A language server for Nextflow.\nhomepage: https://github.com/nextflow-io/language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Nextflow\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/nextflow-io/language-server@v25.10.3\n  asset:\n    file: \"language-server-all.jar\"\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/nextflow-io/vscode-language-nextflow/main/package.json\n\nbin:\n  nextflow-language-server: java-jar:language-server-all.jar\n\nneovim:\n  lspconfig: nextflow_ls\n"
  },
  {
    "path": "packages/nextls/package.yaml",
    "content": "---\nname: nextls\ndescription: NextLS is the language server for Elixir that just works.\nhomepage: https://www.elixir-tools.dev/next-ls/\nlicenses:\n  - MIT\nlanguages:\n  - Elixir\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/elixir-tools/next-ls@v0.23.4\n  asset:\n    - target: darwin_x64\n      file: next_ls_darwin_amd64\n    - target: darwin_arm64\n      file: next_ls_darwin_arm64\n    - target: linux_x64\n      file: next_ls_linux_amd64\n    - target: linux_arm64\n      file: next_ls_linux_arm64\n    - target: win_x64\n      file: next_ls_windows_amd64.exe\n\nbin:\n  nextls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: nextls\n"
  },
  {
    "path": "packages/nginx-config-formatter/package.yaml",
    "content": "---\nname: nginx-config-formatter\ndescription: nginx config file formatter/beautifier written in Python with no additional dependencies.\nhomepage: https://github.com/slomkowski/nginx-config-formatter\nlicenses:\n  - Apache-2.0\nlanguages:\n  - nginx\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/nginxfmt@1.4.0\n\nbin:\n  nginxfmt: pypi:nginxfmt\n"
  },
  {
    "path": "packages/nginx-language-server/package.yaml",
    "content": "---\nname: nginx-language-server\ndescription: A language server for nginx configuration files.\nhomepage: https://github.com/pappasam/nginx-language-server\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - nginx\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/nginx-language-server@0.9.0\n\nbin:\n  nginx-language-server: pypi:nginx-language-server\n\nneovim:\n  lspconfig: nginx_language_server\n"
  },
  {
    "path": "packages/nickel-lang-lsp/package.yaml",
    "content": "---\nname: nickel-lang-lsp\ndescription: |\n  The Nickel Language Server (NLS) is a language server for the Nickel programming language. NLS offers error messages,\n  type hints, and auto-completion right in your favorite LSP-enabled editor.\nhomepage: https://nickel-lang.org/\nlicenses:\n  - MIT\nlanguages:\n  - Nickel\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/nickel-lang-lsp@1.16.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/tweag/nickel/{{version}}/lsp/vscode-extension/package.json\n\nbin:\n  nls: cargo:nls\n\nneovim:\n  lspconfig: nickel_ls\n"
  },
  {
    "path": "packages/nil/package.yaml",
    "content": "---\nname: nil\ndescription: Language Server for Nix.\nhomepage: https://github.com/oxalica/nil\nlicenses:\n  - MIT\n  - Apache-2.0\nlanguages:\n  - Nix\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:cargo/nil@2025-06-13?repository_url=https://github.com/oxalica/nil\n\nbin:\n  nil: cargo:nil\n\nneovim:\n  lspconfig: nil_ls\n"
  },
  {
    "path": "packages/nilaway/package.yaml",
    "content": "---\nname: nilaway\ndescription: |\n  NilAway is a static analysis tool that seeks to help developers avoid\n  nil panics in production by catching them at compile time rather than\n  at runtime.\nhomepage: https://github.com/uber-go/nilaway\nlicenses:\n  - Apache-2.0\n\nlanguages:\n  - Go\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/go.uber.org/nilaway@v0.0.0-20260318203545-ad240b12fb4c#cmd/nilaway\n\nbin:\n  nilaway: golang:nilaway\n\nci_skip: true\n"
  },
  {
    "path": "packages/nimlangserver/package.yaml",
    "content": "---\nname: nimlangserver\ndescription: The Nim language server implementation (based on nimsuggest)\nhomepage: https://github.com/nim-lang/langserver\nlicenses:\n  - MIT\nlanguages:\n  - Nim\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/nim-lang/langserver@v1.12.0\n  asset:\n    - target: linux_x64\n      file: nimlangserver-linux-amd64.tar.gz\n      bin: nimlangserver\n    - target: linux_arm64\n      file: nimlangserver-linux-arm64.tar.gz\n      bin: nimlangserver\n    - target: linux_x86\n      file: nimlangserver-linux-i686.tar.gz\n      bin: nimlangserver\n    - target: darwin_x64\n      file: nimlangserver-macos-amd64.zip\n      bin: nimlangserver\n    - target: darwin_arm64\n      file: nimlangserver-macos-arm64.zip\n      bin: nimlangserver\n    - target: win_x64\n      file: nimlangserver-windows-amd64.zip\n      bin: nimlangserver.exe\n\n  version_overrides:\n    - constraint: semver:<=v1.6.0\n      id: pkg:github/nim-lang/langserver@v1.6.0\n      asset:\n        - target: linux_x64\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-linux-amd64.tar.gz\n          bin: nimlangserver\n        - target: linux_arm64\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-linux-arm64.tar.gz\n          bin: nimlangserver\n        - target: linux_x86\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-linux-i686.tar.gz\n          bin: nimlangserver\n        - target: darwin_x64\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-macos-amd64.zip\n          bin: nimlangserver\n        - target: darwin_arm64\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-macos-arm64.zip\n          bin: nimlangserver\n        - target: win_x64\n          file: nimlangserver-{{ version | strip_prefix \"v\" }}-windows-amd64.zip\n          bin: nimlangserver.exe\n\nbin:\n  nimlangserver: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: nim_langserver\n"
  },
  {
    "path": "packages/nimlsp/package.yaml",
    "content": "---\nname: nimlsp\ndescription: Language Server Protocol implementation for Nim.\nhomepage: https://github.com/PMunch/nimlsp\nlicenses:\n  - MIT\nlanguages:\n  - Nim\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/PMunch/nimlsp@v0.4.7\n  build:\n    - target: unix\n      run: nimble build -y --localdeps\n      bin: nimlsp\n    - target: win\n      run: nimble build -y --localdeps\n      bin: nimlsp.exe\n\nbin:\n  nimlsp: \"{{source.build.bin}}\"\n\nneovim:\n  lspconfig: nimls\n"
  },
  {
    "path": "packages/nixfmt/package.yaml",
    "content": "---\nname: nixfmt\ndescription: The official formatter for Nix code\nhomepage: https://github.com/NixOS/nixfmt\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Nix\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/NixOS/nixfmt@v1.2.0\n  asset:\n    - target: linux_x64\n      file: nixfmt\n\nbin:\n  nixfmt: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/nixpkgs-fmt/package.yaml",
    "content": "---\nname: nixpkgs-fmt\ndescription: Nix code formatter for nixpkgs\nhomepage: https://github.com/nix-community/nixpkgs-fmt\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Nix\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:cargo/nixpkgs-fmt@1.3.0\n  supported_platforms:\n    - unix\n\nbin:\n  nixpkgs-fmt: cargo:nixpkgs-fmt\n"
  },
  {
    "path": "packages/nomad/package.yaml",
    "content": "---\nname: nomad\ndescription: |\n  Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice,\n  batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul\n  and Vault integrations.\nhomepage: https://www.nomadproject.io/\nlicenses:\n  - BUSL-1.1\nlanguages:\n  - Nomad\ncategories:\n  - Formatter\n  - Linter\n  - Runtime\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/hashicorp/nomad@v2.0.0\n  download:\n    - target: darwin_x64\n      files:\n        nomad.zip: https://releases.hashicorp.com/nomad/{{ version | strip_prefix \"v\" }}/nomad_{{ version | strip_prefix \"v\" }}_darwin_amd64.zip\n      bin: nomad\n    - target: darwin_arm64\n      files:\n        nomad.zip: https://releases.hashicorp.com/nomad/{{ version | strip_prefix \"v\" }}/nomad_{{ version | strip_prefix \"v\" }}_darwin_arm64.zip\n      bin: nomad\n    - target: linux_x64\n      files:\n        nomad.zip: https://releases.hashicorp.com/nomad/{{ version | strip_prefix \"v\" }}/nomad_{{ version | strip_prefix \"v\" }}_linux_amd64.zip\n      bin: nomad\n    - target: linux_arm64\n      files:\n        nomad.zip: https://releases.hashicorp.com/nomad/{{ version | strip_prefix \"v\" }}/nomad_{{ version | strip_prefix \"v\" }}_linux_arm64.zip\n      bin: nomad\n    - target: win_x64\n      files:\n        nomad: https://releases.hashicorp.com/nomad/{{ version | strip_prefix \"v\" }}/nomad_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: nomad\n\nbin:\n  nomad: \"{{source.download.bin}}\"\n"
  },
  {
    "path": "packages/nomicfoundation-solidity-language-server/package.yaml",
    "content": "---\nname: nomicfoundation-solidity-language-server\ndescription: Solidity language server by NomicFoundation\nhomepage: https://github.com/NomicFoundation/hardhat-vscode\nlicenses:\n  - MIT\nlanguages:\n  - Solidity\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40nomicfoundation/solidity-language-server@0.8.25\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/NomicFoundation/hardhat-vscode/v{{version}}/client/package.json\n\nbin:\n  nomicfoundation-solidity-language-server: npm:nomicfoundation-solidity-language-server\n\nneovim:\n  lspconfig: solidity_ls_nomicfoundation\n"
  },
  {
    "path": "packages/npm-groovy-lint/package.yaml",
    "content": "---\nname: npm-groovy-lint\ndescription: Lint, format and auto-fix your Groovy / Jenkinsfile / Gradle files using command line.\nhomepage: https://github.com/nvuillam/npm-groovy-lint\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Groovy\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/npm-groovy-lint@17.0.4\n\nbin:\n  npm-groovy-lint: npm:npm-groovy-lint\n"
  },
  {
    "path": "packages/ntt/package.yaml",
    "content": "---\nname: ntt\ndescription: Modern tools for TTCN-3\nhomepage: https://nokia.github.io/ntt/\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - TTCN-3\ncategories:\n  - LSP\n  - Runtime\n\nsource:\n  id: pkg:github/nokia/ntt@v0.23.2\n  asset:\n    - target: darwin_arm64\n      file: ntt_darwin_arm64.tar.gz\n      bin: ntt\n    - target: darwin_x64\n      file: ntt_darwin_x86_64.tar.gz\n      bin: ntt\n    - target: linux_arm64\n      file: ntt_linux_arm64.tar.gz\n      bin: ntt\n    - target: linux_x64\n      file: ntt_linux_x86_64.tar.gz\n      bin: ntt\n    - target: win_x64\n      file: ntt_windows_x86_64.zip\n      bin: ntt.exe\n\nbin:\n  ntt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/nxls/package.yaml",
    "content": "---\nname: nxls\ndescription: A language server that provides code completion and more for Nx workspaces.\nhomepage: https://github.com/nrwl/nx-console/tree/master/apps/nxls\nlicenses:\n  - MIT\nlanguages:\n  - JSON\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/nxls@1.11.0\n\nbin:\n  nxls: npm:nxls\n"
  },
  {
    "path": "packages/ocaml-lsp/package.yaml",
    "content": "---\nname: ocaml-lsp\ndescription: OCaml Language Server Protocol implementation.\nhomepage: https://github.com/ocaml/ocaml-lsp\nlicenses:\n  - ISC\nlanguages:\n  - OCaml\ncategories:\n  - LSP\n\nsource:\n  id: pkg:opam/ocaml-lsp-server@1.24.0\n\nbin:\n  ocamllsp: opam:ocamllsp\n\nneovim:\n  lspconfig: ocamllsp\n"
  },
  {
    "path": "packages/ocamlearlybird/package.yaml",
    "content": "---\nname: ocamlearlybird\ndescription: OCaml debug adapter.\nhomepage: https://github.com/hackwaly/ocamlearlybird\nlicenses:\n  - MIT\nlanguages:\n  - OCaml\ncategories:\n  - DAP\n\nsource:\n  id: pkg:opam/earlybird@1.3.3\n\nbin:\n  ocamlearlybird: opam:ocamlearlybird\n"
  },
  {
    "path": "packages/ocamlformat/package.yaml",
    "content": "---\nname: ocamlformat\ndescription: |\n  ocamlformat is a tool for formatting OCaml code. It automatically adjusts the layout of your code to follow the\n  recommended style guidelines, making it easier to read and understand.\nhomepage: https://github.com/ocaml-ppx/ocamlformat\nlicenses:\n  - MIT\nlanguages:\n  - OCaml\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:opam/ocamlformat@0.28.1\n\nbin:\n  ocamlformat: opam:ocamlformat\n"
  },
  {
    "path": "packages/oelint-adv/package.yaml",
    "content": "---\nname: oelint-adv\ndescription: Linter for bitbake recipes.\nhomepage: https://github.com/priv-kweihmann/oelint-adv\nlicenses:\n  - BSD-2-Clause\nlanguages:\n  - BitBake\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/oelint-adv@9.7.1\n\nbin:\n  oelint-adv: pypi:oelint-adv\n"
  },
  {
    "path": "packages/ols/package.yaml",
    "content": "---\nname: ols\ndescription: Language server for Odin. This project is still in early development.\nhomepage: https://github.com/DanielGavin/ols\nlicenses:\n  - MIT\nlanguages:\n  - Odin\ncategories:\n  - LSP\n  - Formatter\n\nsource:\n  id: pkg:github/DanielGavin/ols@nightly\n  asset:\n    - target: darwin_arm64\n      file: ols-arm64-darwin.zip\n      bin: ols-arm64-darwin\n      fmt_bin: odinfmt-arm64-darwin\n    - target: darwin_x64\n      file: ols-x86_64-darwin.zip\n      bin: ols-x86_64-darwin\n      fmt_bin: odinfmt-x86_64-darwin\n    - target: linux_x64_gnu\n      file: ols-x86_64-unknown-linux-gnu.zip\n      bin: ols-x86_64-unknown-linux-gnu\n      fmt_bin: odinfmt-x86_64-unknown-linux-gnu\n    - target: linux_arm64_gnu\n      file: ols-arm64-unknown-linux-gnu.zip\n      bin: ols-arm64-unknown-linux-gnu\n      fmt_bin: odinfmt-arm64-unknown-linux-gnu\n    - target: win_x86\n      file: ols-x86_64-pc-windows-msvc.zip\n      bin: ols-x86_64-pc-windows-msvc.exe\n      fmt_bin: odinfmt-x86_64-pc-windows-msvc.exe\n    - target: win_x64\n      file: ols-x86_64-pc-windows-msvc.zip\n      bin: ols-x86_64-pc-windows-msvc.exe\n      fmt_bin: odinfmt-x86_64-pc-windows-msvc.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/DanielGavin/ols/{{version}}/editors/vscode/package.json\n\nbin:\n  ols: \"{{source.asset.bin}}\"\n  odinfmt: \"{{source.asset.fmt_bin}}\"\n\nneovim:\n  lspconfig: ols\n"
  },
  {
    "path": "packages/omnisharp/package.yaml",
    "content": "---\nname: omnisharp\ndescription: |\n  OmniSharp language server based on Roslyn workspaces. This version of Omnisharp requires dotnet (.NET 6.0) to be\n  installed.\nhomepage: https://github.com/OmniSharp/omnisharp-roslyn\nlicenses:\n  - MIT\nlanguages:\n  - C#\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.15\n  asset:\n    - target: darwin_x64\n      file: omnisharp-osx-x64-net6.0.zip:libexec/\n    - target: darwin_arm64\n      file: omnisharp-osx-arm64-net6.0.zip:libexec/\n    - target: linux_x64\n      file: omnisharp-linux-x64-net6.0.zip:libexec/\n    - target: linux_arm64\n      file: omnisharp-linux-arm64-net6.0.zip:libexec/\n    - target: win_x64\n      file: omnisharp-win-x64-net6.0.zip:libexec/\n    - target: win_arm64\n      file: omnisharp-win-arm64-net6.0.zip:libexec/\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/OmniSharp/omnisharp-vscode/master/package.json\n\nbin:\n  OmniSharp: dotnet:libexec/OmniSharp.dll\n\nneovim:\n  lspconfig: omnisharp\n"
  },
  {
    "path": "packages/omnisharp-mono/package.yaml",
    "content": "---\nname: omnisharp-mono\ndescription: |\n  OmniSharp language server based on Roslyn workspaces. This version of Omnisharp requires Mono to be installed on Linux\n  & macOS.\nhomepage: https://github.com/OmniSharp/omnisharp-roslyn\nlicenses:\n  - MIT\nlanguages:\n  - C#\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/OmniSharp/omnisharp-roslyn@v1.39.15\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: omnisharp-osx.tar.gz\n      bin: exec:run\n    - target: linux_x64\n      file: omnisharp-linux-x64.tar.gz\n      bin: exec:run\n    - target: linux_x86\n      file: omnisharp-linux-x86.tar.gz\n      bin: exec:run\n    - target: win_x64\n      file: omnisharp-win-x64.zip\n      bin: OmniSharp.exe\n    - target: win_x86\n      file: omnisharp-win-x86.zip\n      bin: OmniSharp.exe\n\nbin:\n  omnisharp-mono: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: omnisharp_mono\n"
  },
  {
    "path": "packages/opa/package.yaml",
    "content": "---\nname: opa\ndescription: Open Policy Agent (OPA) is an open source, general-purpose policy engine.\nhomepage: https://github.com/open-policy-agent/opa\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Rego\ncategories:\n  - Linter\n  - Formatter\n  - Compiler\n  - Runtime\n\nsource:\n  id: pkg:github/open-policy-agent/opa@v1.15.2\n  asset:\n    - target: darwin_arm64\n      file: opa_darwin_arm64_static\n    - target: darwin_x64\n      file: opa_darwin_amd64\n    - target: linux_arm64\n      file: opa_linux_arm64_static\n    - target: linux_x64\n      file: opa_linux_amd64_static\n    - target: win_x64\n      file: opa_windows_amd64.exe\n\nbin:\n  opa: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/opencl-language-server/package.yaml",
    "content": "---\nname: opencl-language-server\ndescription: Provides an OpenCL kernel diagnostics.\nhomepage: https://github.com/Galarius/opencl-language-server\nlicenses:\n  - MIT\nlanguages:\n  - OpenCL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/Galarius/opencl-language-server@0.6.3\n  asset:\n    - target: darwin_arm64\n      file: opencl-language-server-darwin-arm64.tar.gz\n      bin: opencl-language-server\n    - target: darwin_x64\n      file: opencl-language-server-darwin-x86_64.tar.gz\n      bin: opencl-language-server\n    - target: linux_arm64\n      file: opencl-language-server-linux-arm64.tar.gz\n      bin: opencl-language-server\n    - target: linux_x64\n      file: opencl-language-server-linux-x86_64.tar.gz\n      bin: opencl-language-server\n    - target: win_x64\n      file: opencl-language-server-win32-x86_64.zip\n      bin: opencl-language-server.exe\n\nbin:\n  opencl-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: opencl_ls\n"
  },
  {
    "path": "packages/openedge-language-server/package.yaml",
    "content": "---\nname: openedge-language-server\ndescription: OpenEdge Language Server.\nhomepage: https://github.com/vscode-abl/vscode-abl\nlicenses:\n  - MIT\nlanguages:\n  - Progress\n  - OpenEdge\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/vscode-abl/vscode-abl@V1.4.21\n  asset:\n    file: abl-lsp.jar\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/vscode-abl/vscode-abl/{{version}}/package.json\n\nshare:\n  openedge/abl-lsp.jar: abl-lsp.jar\n"
  },
  {
    "path": "packages/openscad-language-server/package.yaml",
    "content": "---\nname: openscad-language-server\ndescription: A Language Server Protocol server for OpenSCAD\nhomepage: https://github.com/dzhu/openscad-language-server\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - OpenSCAD\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/openscad-language-server@0.1.0\n\nbin:\n  openscad-language-server: cargo:openscad-language-server\n"
  },
  {
    "path": "packages/openscad-lsp/package.yaml",
    "content": "---\nname: openscad-lsp\ndescription: Language Server Protocol implementation for OpenSCAD, written in Rust.\nhomepage: https://github.com/Leathong/openscad-LSP\nlicenses:\n  - Apache-2.0\nlanguages:\n  - OpenSCAD\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/openscad-lsp@2.0.1\n\nbin:\n  openscad-lsp: cargo:openscad-lsp\n\nneovim:\n  lspconfig: openscad_lsp\n"
  },
  {
    "path": "packages/ormolu/package.yaml",
    "content": "---\nname: ormolu\ndescription: A formatter for Haskell source code.\nhomepage: https://hackage.haskell.org/package/ormolu\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Haskell\ncategories:\n  - Formatter\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/tweag/ormolu@0.8.0.2\n  asset:\n    - target: darwin_arm64\n      file: ormolu-aarch64-darwin.zip\n      bin: ormolu\n    - target: darwin_x64\n      file: ormolu-x86_64-darwin.zip\n      bin: ormolu\n    - target: linux_x64\n      file: ormolu-x86_64-linux.zip\n      bin: ormolu\n    - target: win_x64\n      file: ormolu-x86_64-windows.zip\n      bin: ormolu.exe\n\nbin:\n  ormolu: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/oxfmt/package.yaml",
    "content": "---\nname: oxfmt\ndescription:  Prettier-compatible code formatter powered by Oxc\nhomepage: https://oxc.rs/docs/guide/usage/formatter\nlicenses:\n  - MIT\nlanguages:\n  - Angular\n  - CSS\n  - Flow\n  - GraphQL\n  - HTML\n  - JSON\n  - JSX\n  - JavaScript\n  - LESS\n  - Markdown\n  - SCSS\n  - TypeScript\n  - Vue\n  - YAML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/oxfmt@0.46.0\n\nbin:\n  oxfmt: npm:oxfmt\n\nneovim:\n  lspconfig: oxfmt\n"
  },
  {
    "path": "packages/oxlint/package.yaml",
    "content": "---\nname: oxlint\ndescription: High-performance linter for JavaScript and TypeScript written in Rust.\nhomepage: https://github.com/oxc-project/oxc\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:npm/oxlint@1.61.0\n\nbin:\n  oxlint: npm:oxlint\n\nneovim:\n  lspconfig: oxlint\n"
  },
  {
    "path": "packages/pbls/package.yaml",
    "content": "---\nname: pbls\ndescription: A language server implementation for Google Protocol Buffers.\nhomepage: https://git.sr.ht/~rrc/pbls\nlicenses:\n  - MIT\nlanguages:\n  - Protobuf\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/pbls@1.0.1?repository_url=https://git.sr.ht/~rrc/pbls\n\nbin:\n  pbls: cargo:pbls\n\nneovim:\n  lspconfig: pbls\n"
  },
  {
    "path": "packages/perl-debug-adapter/package.yaml",
    "content": "---\nname: perl-debug-adapter\ndescription: Perl debugger that invokes perl -d.\nhomepage: https://github.com/Nihilus118/perl-debug-adapter\nlicenses:\n  - MIT\nlanguages:\n  - Perl\ncategories:\n  - DAP\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/Nihilus118/perl-debug-adapter@v2.0.0\n  build:\n    run: |\n      npm install\n      npm run compile\n\nbin:\n  perl-debug-adapter: node:out/debugAdapter.js\n"
  },
  {
    "path": "packages/perlnavigator/package.yaml",
    "content": "---\nname: perlnavigator\ndescription: Perl Language Server that includes perl critic and code navigation.\nhomepage: https://github.com/bscan/PerlNavigator\nlicenses:\n  - MIT\nlanguages:\n  - Perl\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/perlnavigator-server@0.8.20\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bscan/PerlNavigator/v{{version}}/package.json\n\nbin:\n  perlnavigator: node:node_modules/perlnavigator-server/out/server.js\n\nneovim:\n  lspconfig: perlnavigator\n"
  },
  {
    "path": "packages/pest-language-server/package.yaml",
    "content": "---\nname: pest-language-server\ndescription: A language server for Pest grammar.\nhomepage: https://github.com/pest-parser/pest-ide-tools\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Pest\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/pest-language-server@0.3.13\n\nbin:\n  pest-language-server: cargo:pest-language-server\n\nneovim:\n  lspconfig: pest_ls\n"
  },
  {
    "path": "packages/pgformatter/package.yaml",
    "content": "---\nname: pgformatter\ndescription: PostgreSQL SQL syntax beautifier\nhomepage: http://sqlformat.darold.net\nlicenses:\n  - PostgreSQL\nlanguages:\n  - Postgres\n  - SQL\ncategories:\n  - Formatter\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:github/darold/pgformatter@v5.9\n  build:\n    run: \"\"\n\nbin:\n  pg_format: pg_format\n"
  },
  {
    "path": "packages/php-cs-fixer/package.yaml",
    "content": "---\nname: php-cs-fixer\ndescription: |\n  The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards; whether you want to follow PHP\n  coding standards as defined in the PSR-1, PSR-2, etc., or other community driven ones like the Symfony one. You can\n  also define your (team's) style through configuration.\nhomepage: https://github.com/PHP-CS-Fixer/PHP-CS-Fixer\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/PHP-CS-Fixer/PHP-CS-Fixer@v3.95.1\n  asset:\n    file: php-cs-fixer.phar\n\nbin:\n  php-cs-fixer: php:php-cs-fixer.phar\n"
  },
  {
    "path": "packages/php-debug-adapter/package.yaml",
    "content": "---\nname: php-debug-adapter\ndescription: PHP Debug Adapter 🐞⛔.\nhomepage: https://github.com/xdebug/vscode-php-debug\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - DAP\n\nsource:\n  id: pkg:github/xdebug/vscode-php-debug@v1.40.1\n  asset:\n    file: php-debug-{{ version | strip_prefix \"v\" }}.vsix\n\nbin:\n  php-debug-adapter: node:extension/out/phpDebug.js\n"
  },
  {
    "path": "packages/phpactor/package.yaml",
    "content": "---\nname: phpactor\ndescription: |\n  Phpactor is an intelligent Completion and Refactoring tool for PHP which is available over it’s own RPC protocol and\n  as a Language Server.\nhomepage: https://phpactor.readthedocs.io/en/master/\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  # renovate:datasource=github-tags\n  id: pkg:github/phpactor/phpactor@2025.12.21.1\n  asset:\n    file: phpactor.phar\n\nbin:\n  phpactor: php:phpactor.phar\n\nneovim:\n  lspconfig: phpactor\n"
  },
  {
    "path": "packages/phpantom_lsp/package.yaml",
    "content": "---\nname: phpantom_lsp\ndescription: |\n  A lightweight PHP language server with deep type intelligence — generics, Laravel support, and PHPStan annotations.\n  Written in Rust for fast startup and low memory use.\nhomepage: https://github.com/AJenbo/phpantom_lsp\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/AJenbo/phpantom_lsp@0.7.0\n  asset:\n    - target: darwin_arm64\n      file: phpantom_lsp-aarch64-apple-darwin.tar.gz\n      bin: phpantom_lsp\n    - target: darwin_x64\n      file: phpantom_lsp-x86_64-apple-darwin.tar.gz\n      bin: phpantom_lsp\n    - target: linux_arm64_gnu\n      file: phpantom_lsp-aarch64-unknown-linux-gnu.tar.gz\n      bin: phpantom_lsp\n    - target: linux_x64_gnu\n      file: phpantom_lsp-x86_64-unknown-linux-gnu.tar.gz\n      bin: phpantom_lsp\n    - target: win_x64\n      file: phpantom_lsp-x86_64-pc-windows-msvc.zip\n      bin: phpantom_lsp.exe\n\nbin:\n  phpantom_lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: phpantom_lsp\n"
  },
  {
    "path": "packages/phpcbf/package.yaml",
    "content": "---\nname: phpcbf\ndescription: phpcbf automatically corrects coding standard violations that would be detected by phpcs.\nhomepage: https://github.com/PHPCSStandards/PHP_CodeSniffer\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - PHP\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/PHPCSStandards/PHP_CodeSniffer@4.0.1\n  asset:\n    file: phpcbf.phar\n\nbin:\n  phpcbf: php:phpcbf.phar\n"
  },
  {
    "path": "packages/phpcs/package.yaml",
    "content": "---\nname: phpcs\ndescription: phpcs tokenizes PHP, JavaScript and CSS files to detect violations of a defined standard.\nhomepage: https://github.com/PHPCSStandards/PHP_CodeSniffer\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - PHP\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/PHPCSStandards/PHP_CodeSniffer@4.0.1\n  asset:\n    file: phpcs.phar\n\nbin:\n  phpcs: php:phpcs.phar\n"
  },
  {
    "path": "packages/phpmd/package.yaml",
    "content": "---\nname: phpmd\ndescription: |\n  PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD. PHPMD can\n  be seen as an user friendly frontend application for the raw metrics stream measured by PHP Depend.\nhomepage: https://github.com/phpmd/phpmd\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - PHP\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/phpmd/phpmd@2.15.0\n  asset:\n    file: phpmd.phar\n\nbin:\n  phpmd: php:phpmd.phar\n"
  },
  {
    "path": "packages/phpstan/package.yaml",
    "content": "---\nname: phpstan\ndescription: PHP Static Analysis Tool - discover bugs in your code without running it!\nhomepage: https://github.com/phpstan/phpstan\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/phpstan/phpstan@2.1.51\n  asset:\n    file: phpstan.phar\n\nbin:\n  phpstan: php:phpstan.phar\n"
  },
  {
    "path": "packages/pico8-ls/package.yaml",
    "content": "---\nname: pico8-ls\ndescription: Full language support for the PICO-8 dialect of Lua.\nhomepage: https://github.com/japhib/pico8-ls\nlicenses:\n  - MIT\nlanguages:\n  - PICO-8\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/japhib/pico8-ls@40c53c2061a42b20b22f83467d241e668c2487a2\n  build:\n    run: |\n      npm install\n      npm run compile\n      npm install --production\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/japhib/pico8-ls/{{version}}/package.json\n\nbin:\n  pico8-ls: node:server/out-min/main.js\n\nneovim:\n  lspconfig: pico8_ls\n"
  },
  {
    "path": "packages/pinact/package.yaml",
    "content": "---\nname: pinact\ndescription: Update & pin GitHub Workflows and Actions to commit SHAs\nhomepage: https://github.com/suzuki-shunsuke/pinact\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories: []\n\nsource:\n  id: pkg:github/suzuki-shunsuke/pinact@v3.9.0\n  asset:\n    - target: darwin_x64\n      file: pinact_darwin_amd64.tar.gz\n      bin: pinact\n    - target: darwin_arm64\n      file: pinact_darwin_arm64.tar.gz\n      bin: pinact\n    - target: linux_x64\n      file: pinact_linux_amd64.tar.gz\n      bin: pinact\n    - target: linux_arm64\n      file: pinact_linux_arm64.tar.gz\n      bin: pinact\n    - target: win_x64\n      file: pinact_windows_amd64.zip\n      bin: pinact.exe\n    - target: win_arm64\n      file: pinact_windows_arm64.zip\n      bin: pinact.exe\n\nbin:\n  pinact: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/pint/package.yaml",
    "content": "---\nname: pint\ndescription: Laravel Pint is an opinionated PHP code style fixer for minimalists.\nhomepage: https://laravel.com/docs/pint\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:composer/laravel/pint@v1.29.1\n\nbin:\n  pint: composer:pint\n"
  },
  {
    "path": "packages/pkl-lsp/package.yaml",
    "content": "---\nname: pkl-lsp\ndescription: Language server for Pkl, implementing the server-side of the Language Server Protocol.\nhomepage: https://github.com/apple/pkl-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Pkl\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/apple/pkl-lsp@0.6.0\n  asset:\n    file: pkl-lsp-{{ version }}.jar\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/apple/pkl-vscode/main/package.json\n\nbin:\n  pkl-lsp: java-jar:{{source.asset.file}}\n"
  },
  {
    "path": "packages/postgres-language-server/package.yaml",
    "content": "---\nname: postgres-language-server\ndescription: A collection of language tools and a Language Server Protocol (LSP) implementation for Postgres, focusing on developer experience and reliable SQL tooling.\nhomepage: https://pg-language-server.com\nlicenses:\n  - MIT\nlanguages:\n  - Postgres\n  - SQL\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:github/supabase-community/postgres-language-server@0.24.0\n  asset:\n    - target: darwin_arm64\n      file: postgres-language-server_aarch64-apple-darwin\n    - target: darwin_x64\n      file: postgres-language-server_x86_64-apple-darwin\n    - target: linux_x64_gnu\n      file: postgres-language-server_x86_64-unknown-linux-gnu\n    - target: linux_x64_musl\n      file: postgres-language-server_x86_64-unknown-linux-musl\n    - target: linux_arm64_gnu\n      file: postgres-language-server_aarch64-unknown-linux-gnu\n    - target: win_x64\n      file: postgres-language-server_x86_64-pc-windows-msvc.exe\n    - target: win_arm64\n      file: postgres-language-server_aarch64-pc-windows-msvc.exe\n\nbin:\n  postgres-language-server: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: postgres_lsp\n"
  },
  {
    "path": "packages/powershell-editor-services/package.yaml",
    "content": "---\nname: powershell-editor-services\ndescription: A common platform for PowerShell development support in any editor or application.\nhomepage: https://github.com/PowerShell/PowerShellEditorServices\nlicenses:\n  - MIT\nlanguages:\n  - PowerShell\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/PowerShell/PowerShellEditorServices@v4.5.0\n  asset:\n    file: PowerShellEditorServices.zip\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/PowerShell/vscode-powershell/main/package.json\n\nneovim:\n  lspconfig: powershell_es\n"
  },
  {
    "path": "packages/prettier/package.yaml",
    "content": "---\nname: prettier\ndescription: Prettier is an opinionated code formatter.\nhomepage: https://prettier.io\nlicenses:\n  - MIT\nlanguages:\n  - Angular\n  - CSS\n  - Flow\n  - GraphQL\n  - HTML\n  - JSON\n  - JSX\n  - JavaScript\n  - LESS\n  - Markdown\n  - SCSS\n  - TypeScript\n  - Vue\n  - YAML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/prettier@3.8.3\n\nbin:\n  prettier: npm:prettier\n"
  },
  {
    "path": "packages/prettierd/package.yaml",
    "content": "---\nname: prettierd\ndescription: Prettier, as a daemon, for ludicrous formatting speed.\nhomepage: https://github.com/fsouza/prettierd\nlicenses:\n  - ISC\nlanguages:\n  - Angular\n  - CSS\n  - Flow\n  - GraphQL\n  - HTML\n  - JSON\n  - JSX\n  - JavaScript\n  - LESS\n  - Markdown\n  - SCSS\n  - TypeScript\n  - Vue\n  - YAML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/%40fsouza/prettierd@0.27.0\n\nbin:\n  prettierd: npm:prettierd\n"
  },
  {
    "path": "packages/pretty-php/package.yaml",
    "content": "---\nname: pretty-php\ndescription: The opinionated PHP code formatter\nhomepage: https://github.com/lkrms/pretty-php\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/lkrms/pretty-php@v0.4.95\n  asset:\n    file: pretty-php.phar\n\nbin:\n  pretty-php: php:pretty-php.phar\n"
  },
  {
    "path": "packages/prettydiff/package.yaml",
    "content": "---\nname: prettydiff\ndescription: Beautifier and language aware code comparison tool for many languages. It also minifies and a few other things.\nhomepage: https://github.com/prettydiff/prettydiff\nlicenses:\n  - CC0-1.0\nlanguages:\n  - HTML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/prettydiff@101.2.6\n\nbin:\n  prettydiff: npm:prettydiff\n"
  },
  {
    "path": "packages/prettypst/package.yaml",
    "content": "---\nname: prettypst\ndescription: Formatter for Typst\nhomepage: https://github.com/antonWetzel/prettypst\nlicenses:\n  - MIT\nlanguages:\n  - Typst\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:cargo/prettypst@2.0.0?repository_url=https://github.com/antonWetzel/prettypst\n\nbin:\n  prettypst: cargo:prettypst\n"
  },
  {
    "path": "packages/prisma-language-server/package.yaml",
    "content": "---\nname: prisma-language-server\ndescription: |\n  Any editor that is compatible with the Language Server Protocol can create clients that can use the features provided\n  by this language server.\nhomepage: https://github.com/prisma/language-tools\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Prisma\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40prisma/language-server@31.10.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/prisma/language-tools/{{version}}/packages/vscode/package.json\n\nbin:\n  prisma-language-server: npm:prisma-language-server\n\nneovim:\n  lspconfig: prismals\n"
  },
  {
    "path": "packages/prometheus-pint/package.yaml",
    "content": "---\nname: prometheus-pint\ndescription: Prometheus rule linter/validator\nhomepage: https://cloudflare.github.io/pint/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - PromQL\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/cloudflare/pint@v0.80.0\n  asset:\n    - target: linux_x86\n      file: pint-{{ version | strip_prefix \"v\" }}-linux-386.tar.gz\n      bin: pint-linux-386\n    - target: linux_x64\n      file: pint-{{ version | strip_prefix \"v\" }}-linux-amd64.tar.gz\n      bin: pint-linux-amd64\n    - target: linux_arm64\n      file: pint-{{ version | strip_prefix \"v\" }}-linux-arm64.tar.gz\n      bin: pint-linux-arm64\n    - target: darwin_x64\n      file: pint-{{ version | strip_prefix \"v\" }}-darwin-amd64.tar.gz\n      bin: pint-darwin-amd64\n    - target: darwin_arm64\n      file: pint-{{ version | strip_prefix \"v\" }}-darwin-arm64.tar.gz\n      bin: pint-darwin-arm64\n    - target: win_x86\n      file: pint-{{ version | strip_prefix \"v\" }}-windows-386.tar.gz\n      bin: pint-windows-386.exe\n    - target: win_x64\n      file: pint-{{ version | strip_prefix \"v\" }}-windows-amd64.tar.gz\n      bin: pint-windows-amd64.exe\n\n# Has to use `prometheus-pint` as name for the symlink/bin to avoid conflict \n# with the `pint` binary (a php linter) which is also available on mason. \n# see https://github.com/mason-org/mason-registry/pull/10126#issuecomment-2920049754\nbin:\n  prometheus-pint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/proselint/package.yaml",
    "content": "---\nname: proselint\ndescription: |\n  proselint is a linter for English prose. It places the world's greatest writers and editors by your side, where they\n  whisper suggestions on how to improve your prose.\nhomepage: https://github.com/amperser/proselint\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Text\n  - Markdown\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/proselint@0.16.0\n\nbin:\n  proselint: pypi:proselint\n"
  },
  {
    "path": "packages/prosemd-lsp/package.yaml",
    "content": "---\nname: prosemd-lsp\ndescription: An experimental proofreading and linting language server for markdown files.\nhomepage: https://github.com/kitten/prosemd-lsp\nlicenses:\n  - LGPL-2.1-or-later\nlanguages:\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/kitten/prosemd-lsp@v0.1.0\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: prosemd-lsp-macos\n    - target: linux_x64_gnu\n      file: prosemd-lsp-linux\n    - target: win_x64\n      file: prosemd-lsp-windows.exe\n\nbin:\n  prosemd-lsp: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: prosemd_lsp\n"
  },
  {
    "path": "packages/protolint/package.yaml",
    "content": "---\nname: protolint\ndescription: protolint is the pluggable linting/fixing utility for Protocol Buffer files (proto2+proto3).\nhomepage: https://github.com/yoheimuta/protolint\nlicenses:\n  - MIT\nlanguages:\n  - Protobuf\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/yoheimuta/protolint@v0.56.4\n  asset:\n    - target: darwin_arm64\n      file: protolint_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin:\n        protolint: protolint\n        protoc_gen_protolint: protoc-gen-protolint\n    - target: darwin_x64\n      file: protolint_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n      bin:\n        protolint: protolint\n        protoc_gen_protolint: protoc-gen-protolint\n    - target: linux_arm64\n      file: protolint_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin:\n        protolint: protolint\n        protoc_gen_protolint: protoc-gen-protolint\n    - target: linux_x64\n      file: protolint_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin:\n        protolint: protolint\n        protoc_gen_protolint: protoc-gen-protolint\n    - target: win_arm64\n      file: protolint_{{ version | strip_prefix \"v\" }}_windows_arm64.tar.gz\n      bin:\n        protolint: protolint.exe\n        protoc_gen_protolint: protoc-gen-protolint.exe\n    - target: win_x64\n      file: protolint_{{ version | strip_prefix \"v\" }}_windows_amd64.tar.gz\n      bin:\n        protolint: protolint.exe\n        protoc_gen_protolint: protoc-gen-protolint.exe\n\n  version_overrides:\n    - constraint: semver:<=0.45.0\n      id: pkg:github/yoheimuta/protolint@v0.45.0\n      asset:\n        - target: darwin_arm64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Darwin_arm64.tar.gz\n          bin:\n            protolint: protolint\n            protoc_gen_protolint: protoc-gen-protolint\n        - target: darwin_x64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Darwin_x86_64.tar.gz\n          bin:\n            protolint: protolint\n            protoc_gen_protolint: protoc-gen-protolint\n        - target: linux_arm64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Linux_arm64.tar.gz\n          bin:\n            protolint: protolint\n            protoc_gen_protolint: protoc-gen-protolint\n        - target: linux_x64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Linux_x86_64.tar.gz\n          bin:\n            protolint: protolint\n            protoc_gen_protolint: protoc-gen-protolint\n        - target: win_arm64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Windows_arm64.tar.gz\n          bin:\n            protolint: protolint.exe\n            protoc_gen_protolint: protoc-gen-protolint.exe\n        - target: win_x64\n          file: protolint_{{ version | strip_prefix \"v\" }}_Windows_x86_64.tar.gz\n          bin:\n            protolint: protolint.exe\n            protoc_gen_protolint: protoc-gen-protolint.exe\n\nbin:\n  protolint: \"{{source.asset.bin.protolint}}\"\n  protoc-gen-protolint: \"{{source.asset.bin.protoc_gen_protolint}}\"\n"
  },
  {
    "path": "packages/protols/package.yaml",
    "content": "---\nname: protols\ndescription: A Simple LSP for proto3 protobuf files.\nhomepage: https://github.com/coder3101/protols\nlicenses:\n  - MIT\nlanguages:\n  - Protobuf\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/protols@0.13.3\n\nbin:\n  protols: cargo:protols\n\nneovim:\n  lspconfig: protols\n"
  },
  {
    "path": "packages/psalm/package.yaml",
    "content": "---\nname: psalm\ndescription: A static analysis tool for finding errors in PHP applications.\nhomepage: https://psalm.dev/\nlicenses:\n  - MIT\nlanguages:\n  - PHP\ncategories:\n  - LSP\n\nsource:\n  id: pkg:composer/vimeo/psalm@6.16.1\n\nbin:\n  psalm: composer:psalm\n  psalm-language-server: composer:psalm-language-server\n  psalm-plugin: composer:psalm-plugin\n  psalm-refactor: composer:psalm-refactor\n  psalter: composer:psalter\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/psalm/psalm-vscode-plugin/master/package.json\n\nci_skip:\n  # freezes on Windows CI for some reason\n  - win_x64\n\nneovim:\n  lspconfig: psalm\n"
  },
  {
    "path": "packages/pug-lsp/package.yaml",
    "content": "---\nname: pug-lsp\ndescription: |\n  An implementation of the Language Protocol Server for [Pug.js](http://pugjs.org)\nhomepage: https://github.com/opa-oz/pug-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Pug\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/opa-oz/pug-lsp@v0.1.0\n  asset:\n    - target: darwin_arm64\n      file: pug-lsp_darwin_all.zip\n      bin: pug-lsp\n    - target: darwin_x64\n      file: pug-lsp_darwin_all.zip\n      bin: pug-lsp\n    - target: linux_arm64\n      file: pug-lsp_linux_arm64.zip\n      bin: pug-lsp\n    - target: linux_x64\n      file: pug-lsp_linux_amd64.zip\n      bin: pug-lsp\n    - target: win_x64\n      file: pug-lsp_windows_amd64.zip\n      bin: pug-lsp.exe\n\nbin:\n  pug-lsp: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/puppet-editor-services/package.yaml",
    "content": "---\nname: puppet-editor-services\ndescription: Puppet Language Server for editors.\nhomepage: https://github.com/puppetlabs/puppet-editor-services\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Puppet\ncategories:\n  - LSP\n  - DAP\n\nsource:\n  id: pkg:github/puppetlabs/puppet-editor-services@v2.0.4\n  asset:\n    file: puppet_editor_services_{{version}}.zip:libexec/\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/puppetlabs/puppet-vscode/main/package.json\n\nbin:\n  puppet-languageserver: ruby:libexec/puppet-languageserver\n  puppet-debugserver: ruby:libexec/puppet-debugserver\n\nneovim:\n  lspconfig: puppet\n"
  },
  {
    "path": "packages/purescript-language-server/package.yaml",
    "content": "---\nname: purescript-language-server\ndescription: |\n  Node-based Language Server Protocol server for PureScript based on the PureScript IDE server (aka psc-ide / purs ide\n  server). Used as the vscode plugin backend but should be compatible with other Language Server Client implementations.\nhomepage: https://github.com/nwolverson/purescript-language-server\nlicenses:\n  - MIT\nlanguages:\n  - PureScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/purescript-language-server@0.18.5\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/nwolverson/vscode-ide-purescript/master/package.json\n\nbin:\n  purescript-language-server: npm:purescript-language-server\n\nneovim:\n  lspconfig: purescriptls\n"
  },
  {
    "path": "packages/purescript-tidy/package.yaml",
    "content": "---\nname: purescript-tidy\ndescription: A syntax tidy-upper (formatter) for PureScript.\nhomepage: https://github.com/natefaubion/purescript-tidy\nlicenses:\n  - MIT\nlanguages:\n  - PureScript\ncategories:\n  - Formatter\n  \nsource:\n  id: pkg:npm/purs-tidy@0.11.1\n  \nbin:\n  purs-tidy: npm:purs-tidy\n"
  },
  {
    "path": "packages/pydocstyle/package.yaml",
    "content": "---\nname: pydocstyle\ndescription: pydocstyle is a static analysis tool for checking compliance with Python docstring conventions.\nhomepage: https://www.pydocstyle.org/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pydocstyle@6.3.0?extra=toml\n\nbin:\n  pydocstyle: pypi:pydocstyle\n"
  },
  {
    "path": "packages/pyflakes/package.yaml",
    "content": "---\nname: pyflakes\ndescription: |\n  A simple program which checks Python source files for errors.\n\n  Pyflakes analyzes programs and detects various errors. It works by parsing the source file, not importing it, so it is\n  safe to use on modules with side effects. It’s also much faster.\nhomepage: https://pypi.org/project/pyflakes/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pyflakes@3.4.0\n\nbin:\n  pyflakes: pypi:pyflakes\n"
  },
  {
    "path": "packages/pyink/package.yaml",
    "content": "---\nname: pyink\ndescription: Pyink is a Python formatter, forked from Black with a few different formatting behaviors.\nhomepage: https://pypi.org/project/pyink/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/pyink@25.12.0\n\nbin:\n  pyink: pypi:pyink\n"
  },
  {
    "path": "packages/pylama/package.yaml",
    "content": "---\nname: pylama\ndescription: Code audit tool for Python.\nhomepage: https://klen.github.io/pylama/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pylama@8.4.1?extra=all\n\nbin:\n  pylama: pypi:pylama\n"
  },
  {
    "path": "packages/pylint/package.yaml",
    "content": "---\nname: pylint\ndescription: Pylint is a static code analyser for Python 2 or 3.\nhomepage: https://pypi.org/project/pylint/\nlicenses:\n  - GPL-2.0-or-later\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pylint@4.0.5\n\nbin:\n  pylint: pypi:pylint\n"
  },
  {
    "path": "packages/pylyzer/package.yaml",
    "content": "---\nname: pylyzer\ndescription: A fast static code analyzer & language server for Python.\nhomepage: https://github.com/mtshiba/pylyzer\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/mtshiba/pylyzer@v0.0.82\n  asset:\n    - target: darwin_arm64\n      file: pylyzer-aarch64-apple-darwin.tar.gz\n      bin: pylyzer\n    - target: darwin_x64\n      file: pylyzer-x86_64-apple-darwin.tar.gz\n      bin: pylyzer\n    - target: linux_armv7l\n      file: pylyzer-armv7-unknown-linux-gnueabihf.tar.gz\n      bin: pylyzer\n    - target: linux_x64\n      file: pylyzer-x86_64-unknown-linux-gnu.tar.gz\n      bin: pylyzer\n    - target: linux_arm64\n      file: pylyzer-aarch64-unknown-linux-gnu.tar.gz\n      bin: pylyzer\n    - target: win_x64\n      file: pylyzer-x86_64-pc-windows-msvc.zip\n      bin: pylyzer.exe\n\nbin:\n  pylyzer: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: pylyzer\n"
  },
  {
    "path": "packages/pymarkdownlnt/package.yaml",
    "content": "---\nname: pymarkdownlnt\ndescription: PyMarkdown is primarily a Markdown linter.\nhomepage: https://pypi.org/project/pymarkdownlnt/\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pymarkdownlnt@0.9.36\n\nbin:\n  pymarkdownlnt: pypi:pymarkdownlnt\n"
  },
  {
    "path": "packages/pyment/package.yaml",
    "content": "---\nname: pyment\ndescription: Create, update or convert docstrings in existing Python files, managing several styles.\nhomepage: https://pypi.org/project/pyment/\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/pyment@0.3.3\n\nbin:\n  pyment: pypi:pyment\n"
  },
  {
    "path": "packages/pymobiledevice3/package.yaml",
    "content": "---\nname: pymobiledevice3\ndescription: Pure python3 implementation for working with iDevices (iPhone, etc...).\nhomepage: https://github.com/doronz88/pymobiledevice3\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Python\ncategories:\n  - Runtime\n\nsource:\n  id: pkg:pypi/pymobiledevice3@9.11.1\nbin:\n  pymobiledevice3: pypi:pymobiledevice3\n"
  },
  {
    "path": "packages/pyproject-flake8/package.yaml",
    "content": "---\nname: pyproject-flake8\ndescription: A monkey patching wrapper to connect flake8 with pyproject.toml configuration.\nhomepage: https://github.com/csachs/pyproject-flake8\nlicenses:\n  - Unlicense\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/pyproject-flake8@7.0.0\n\nbin:\n  pflake8: pypi:pflake8\n"
  },
  {
    "path": "packages/pyproject-fmt/package.yaml",
    "content": "---\nname: pyproject-fmt\ndescription: Format your pyproject.toml file\nhomepage: https://pypi.org/project/pyproject-fmt/\nlicenses:\n  - MIT\nlanguages:\n  - Python\n  - TOML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/pyproject-fmt@2.21.1\n\nbin:\n  pyproject-fmt: pypi:pyproject-fmt\n"
  },
  {
    "path": "packages/pyre/package.yaml",
    "content": "---\nname: pyre\ndescription: Pyre is a performant type checker for Python compliant with PEP 484.\nhomepage: https://pypi.org/project/pyre-check/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:pypi/pyre-check@0.9.25\n\nbin:\n  pyre: pypi:pyre\n\nneovim:\n  lspconfig: pyre\n"
  },
  {
    "path": "packages/pyrefly/package.yaml",
    "content": "---\nname: pyrefly\ndescription: Pyrefly, a faster Python type checker written in Rust\nhomepage: https://pyrefly.org/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n  - LSP\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/facebook/pyrefly/{{version}}/lsp/package.json\n\nsource:\n  id: pkg:pypi/pyrefly@0.62.0\n\nbin:\n  pyrefly: pypi:pyrefly\n\nneovim:\n  lspconfig: pyrefly\n"
  },
  {
    "path": "packages/pyright/package.yaml",
    "content": "---\nname: pyright\ndescription: Static type checker for Python.\nhomepage: https://github.com/microsoft/pyright\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/pyright@1.1.409\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/pyright/{{version}}/packages/vscode-pyright/package.json\n\nbin:\n  pyright: npm:pyright\n  pyright-langserver: npm:pyright-langserver\n\nneovim:\n  lspconfig: pyright\n"
  },
  {
    "path": "packages/python-lsp-server/package.yaml",
    "content": "---\nname: python-lsp-server\ndescription: Fork of the python-language-server project, maintained by the Spyder IDE team and the community.\nhomepage: https://github.com/python-lsp/python-lsp-server\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/python-lsp-server@1.14.0?extra=all\n\nschemas:\n  lsp: https://raw.githubusercontent.com/python-lsp/python-lsp-server/v{{version}}/pylsp/config/schema.json\n\nbin:\n  pylsp: pypi:pylsp\n\nneovim:\n  lspconfig: pylsp\n"
  },
  {
    "path": "packages/qmlls/package.yaml",
    "content": "---\nname: qmlls\ndescription: |\n  QML Language Server is a tool shipped with Qt that helps you write code in your favorite (LSP-supporting) editor.\nhomepage: https://doc-snapshots.qt.io/qt6-dev/qtqml-tooling-qmlls.html\nlicenses:\n  - LicenseRef-Qt-Commercial\n  - GPL-3.0-only WITH Qt-GPL-exception-1.0\nlanguages:\n  - QML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/TheQtCompanyRnD/qmlls-workflow@0.7\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: qmlls-macos-nightly-{{version}}.zip\n      bin: qmlls\n    - target: linux_x64_gnu\n      file: qmlls-ubuntu-nightly-{{version}}.zip\n      bin: qmlls\n    - target: win_x64\n      file: qmlls-windows-nightly-{{version}}.zip\n      bin: qmlls.exe\n\nbin:\n  qmlls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: qmlls\n"
  },
  {
    "path": "packages/quick-lint-js/package.yaml",
    "content": "---\nname: quick-lint-js\ndescription: |\n  Over 130× faster than ESLint, quick-lint-js gives you instant feedback as you code. Find bugs in your JavaScript\n  before your finger leaves the keyboard. Lint any JavaScript file with no configuration.\nhomepage: https://quick-lint-js.com/\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  # renovate:datasource=github-tags\n  id: pkg:generic/quick-lint/quick-lint-js@3.2.0\n  download:\n    - target: darwin_x64\n      files:\n        macos.tar.gz: https://c.quick-lint-js.com/releases/{{version}}/manual/macos.tar.gz\n      bin: quick-lint-js/bin/quick-lint-js\n      man: quick-lint-js/share/man/\n    - target: darwin_arm64\n      files:\n        macos-aarch64.tar.gz: https://c.quick-lint-js.com/releases/{{version}}/manual/macos-aarch64.tar.gz\n      bin: quick-lint-js/bin/quick-lint-js\n      man: quick-lint-js/share/man/\n    - target: linux_x64\n      files:\n        linux.tar.gz: https://c.quick-lint-js.com/releases/{{version}}/manual/linux.tar.gz\n      bin: quick-lint-js/bin/quick-lint-js\n      man: quick-lint-js/share/man/\n    - target: linux_arm64\n      files:\n        linux-aarch64.tar.gz: https://c.quick-lint-js.com/releases/{{version}}/manual/linux-aarch64.tar.gz\n      bin: quick-lint-js/bin/quick-lint-js\n      man: quick-lint-js/share/man/\n    - target: linux_arm\n      files:\n        linux-armhf.tar.gz: https://c.quick-lint-js.com/releases/{{version}}/manual/linux-armhf.tar.gz\n      bin: quick-lint-js/bin/quick-lint-js\n      man: quick-lint-js/share/man/\n    - target: win_x64\n      files:\n        windows.zip: https://c.quick-lint-js.com/releases/{{version}}/manual/windows.zip\n      bin: bin/quick-lint-js.exe\n    - target: win_arm64\n      files:\n        windows-arm64.zip: https://c.quick-lint-js.com/releases/{{version}}/manual/windows-arm64.zip\n      bin: bin/quick-lint-js.exe\n    - target: win_arm\n      files:\n        windows-arm.zip: https://c.quick-lint-js.com/releases/{{version}}/manual/windows-arm.zip\n      bin: bin/quick-lint-js.exe\n\nbin:\n  quick-lint-js: \"{{source.download.bin}}\"\n\nshare:\n  man/: \"{{source.download.man}}\"\n\nneovim:\n  lspconfig: quick_lint_js\n"
  },
  {
    "path": "packages/r-languageserver/package.yaml",
    "content": "---\nname: r-languageserver\ndescription: An implementation of the Language Server Protocol for R.\nhomepage: https://github.com/REditorSupport/languageserver\nlicenses:\n  - proprietary\nlanguages:\n  - R\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/mason-org/r-languageserver@v0.3.17\n  build:\n    - target: unix\n      run: ./bin/install \"$VERSION\"\n      env:\n        VERSION: \"{{version}}\"\n      bin: ./bin/r-languageserver\n    - target: win\n      run: .\\bin\\install.ps1 \"$env:VERSION\"\n      env:\n        VERSION: \"{{version}}\"\n      bin: ./bin/r-languageserver.cmd\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/REditorSupport/vscode-r-lsp/master/package.json\n\nbin:\n  r-languageserver: \"{{source.build.bin}}\"\n\nneovim:\n  lspconfig: r_language_server\n"
  },
  {
    "path": "packages/raku-navigator/package.yaml",
    "content": "---\nname: raku-navigator\ndescription: Raku Language Server that includes Raku critic and code navigation.\nhomepage: https://github.com/bscan/RakuNavigator\nlicenses:\n  - MIT\nlanguages:\n  - Raku\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/bscan/RakuNavigator@ccd511dbd156f396eed613f21adbcd8e38a8c784\n  build:\n    run: |\n      npm install\n      npm run compile\n      npm install --production\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bscan/RakuNavigator/{{version}}/package.json\n\nbin:\n  raku-navigator: node:server/out/server.js\n\nneovim:\n  lspconfig: raku_navigator\n"
  },
  {
    "path": "packages/rassumfrassum/package.yaml",
    "content": "---\nname: rassumfrassum\ndescription: Connect an LSP client to multiple LSP servers.\nhomepage: https://github.com/joaotavora/rassumfrassum\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/rassumfrassum@0.3.3\n\nbin:\n  rass: pypi:rass\n"
  },
  {
    "path": "packages/rdbg/package.yaml",
    "content": "---\nname: rdbg\ndescription: Debug Adapter Protocol implementation for Ruby, powered by rdbg.\nhomepage: https://github.com/ruby/debug\nlicenses:\n  - BSD-2-Clause\nlanguages:\n  - Ruby\ncategories:\n  - DAP\n\nsource:\n  id: pkg:gem/debug@1.11.1\n\nbin:\n  rdbg: gem:rdbg\n"
  },
  {
    "path": "packages/reason-language-server/package.yaml",
    "content": "---\nname: reason-language-server\ndescription: A language server for reason, in reason.\nhomepage: https://github.com/jaredly/reason-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Reason\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/jaredly/reason-language-server@1.7.13\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: rls-macos.zip\n      bin: rls-macos/reason-language-server\n    - target: linux_x64\n      file: rls-linux.zip\n      bin: rls-linux/reason-language-server\n    - target: win_x64\n      file: rls-windows.zip\n      bin: rls-windows/reason-language-server.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/jaredly/reason-language-server/{{version}}/editor-extensions/vscode/package.json\n\nbin:\n  reason-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: reason_ls\n"
  },
  {
    "path": "packages/reformat-gherkin/package.yaml",
    "content": "---\nname: reformat-gherkin\ndescription: Reformat-gherkin automatically formats Gherkin files.\nhomepage: https://pypi.org/project/reformat-gherkin/\nlicenses:\n  - MIT\nlanguages:\n  - Cucumber\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/reformat-gherkin@3.0.1\n\nbin:\n  reformat-gherkin: pypi:reformat-gherkin\n"
  },
  {
    "path": "packages/refurb/package.yaml",
    "content": "---\nname: refurb\ndescription: A tool for refurbishing and modernizing Python codebases.\nhomepage: https://github.com/dosisod/refurb\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/refurb@2.3.1\n\nbin:\n  refurb: pypi:refurb\n"
  },
  {
    "path": "packages/regal/package.yaml",
    "content": "---\nname: regal\ndescription: A linter for Rego, with support for running as an LSP server.\nhomepage: https://github.com/styrainc/regal\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Rego\ncategories:\n  - Linter\n  - LSP\n\nsource:\n  id: pkg:github/styrainc/regal@v0.40.0\n  asset:\n    - target: darwin_arm64\n      file: regal_Darwin_arm64\n    - target: darwin_x64\n      file: regal_Darwin_x86_64\n    - target: linux_arm64\n      file: regal_Linux_arm64\n    - target: linux_x64\n      file: regal_Linux_x86_64\n    - target: win_x64\n      file: regal_Windows_x86_64.exe\n\nbin:\n  regal: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: regal\n"
  },
  {
    "path": "packages/regols/package.yaml",
    "content": "---\nname: regols\ndescription: OPA Rego language server\nhomepage: https://github.com/kitagry/regols\nlicenses:\n  - MIT\nlanguages:\n  - Rego\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/kitagry/regols@v0.2.4\n\nbin:\n  regols: golang:regols\n\nneovim:\n  lspconfig: regols\n"
  },
  {
    "path": "packages/remark-cli/package.yaml",
    "content": "---\nname: remark-cli\ndescription: Command line interface to inspect and change markdown files with remark.\nhomepage: https://remark.js.org/\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/remark-cli@12.0.1\n\nbin:\n  remark: npm:remark\n"
  },
  {
    "path": "packages/remark-language-server/package.yaml",
    "content": "---\nname: remark-language-server\ndescription: A language server to lint and format markdown files with remark.\nhomepage: https://github.com/remarkjs/remark-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/remark-language-server@3.0.0\n\nbin:\n  remark-language-server: npm:remark-language-server\n\nneovim:\n  lspconfig: remark_ls\n"
  },
  {
    "path": "packages/reorder-python-imports/package.yaml",
    "content": "---\nname: reorder-python-imports\ndescription: Tool for automatically reordering python imports. Similar to isort but uses static analysis more.\nhomepage: https://github.com/asottile/reorder_python_imports\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/reorder-python-imports@3.16.0\n\nbin:\n  reorder-python-imports: pypi:reorder-python-imports\n"
  },
  {
    "path": "packages/rescript-language-server/package.yaml",
    "content": "---\nname: rescript-language-server\ndescription: Language Server for ReScript.\nhomepage: https://github.com/rescript-lang/rescript-vscode/tree/master/server\nlicenses:\n  - MIT\nlanguages:\n  - ReScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40rescript/language-server@1.72.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/rescript-lang/rescript-vscode/{{version}}/package.json\n\nbin:\n  rescript-language-server: npm:rescript-language-server\n\nneovim:\n  lspconfig: rescriptls\n"
  },
  {
    "path": "packages/revive/package.yaml",
    "content": "---\nname: revive\ndescription: ~6x faster, stricter, configurable, extensible, and beautiful drop-in replacement for golint.\nhomepage: https://github.com/mgechev/revive\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/github.com/mgechev/revive@v1.15.0\n\nbin:\n  revive: golang:revive\n"
  },
  {
    "path": "packages/ripper-tags/package.yaml",
    "content": "---\nname: ripper-tags\ndescription: fast, accurate ctags generator for ruby source code using Ripper.\nhomepage: https://github.com/tmm1/ripper-tags\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories: []\n\nsource:\n  id: pkg:gem/ripper-tags@1.0.2\n\nbin:\n  ripper-tags: gem:ripper-tags\n"
  },
  {
    "path": "packages/rnix-lsp/package.yaml",
    "content": "---\nname: rnix-lsp\ndescription: Language Server for Nix.\nhomepage: https://github.com/nix-community/rnix-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Nix\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/rnix-lsp@0.2.5\n\nbin:\n  rnix-lsp: cargo:rnix-lsp\n\nneovim:\n  lspconfig: rnix\n"
  },
  {
    "path": "packages/robotcode/package.yaml",
    "content": "---\nname: robotcode\ndescription: The Ultimate Robot Framework Toolset\nhomepage: https://robotcode.io/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Robot Framework\ncategories:\n  - LSP\n  - DAP\n\nsource:\n  id: pkg:pypi/robotcode@2.5.1?extra=all\n\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/robotcodedev/robotcode/v{{version}}/package.json\n\nbin:\n  robotcode: pypi:robotcode\n\nneovim:\n  lspconfig: robotcode\n"
  },
  {
    "path": "packages/robotframework-lsp/package.yaml",
    "content": "---\nname: robotframework-lsp\ndescription: Language Server Protocol implementation for Robot Framework.\nhomepage: https://github.com/robocorp/robotframework-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Robot Framework\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/robotframework-lsp@1.13.0\n\nbin:\n  robotframework_ls: pypi:robotframework_ls\n\nneovim:\n  lspconfig: robotframework_ls\n"
  },
  {
    "path": "packages/roc_language_server/package.yaml",
    "content": "---\nname: roc_language_server\ndescription: This is a basic language server for Roc.\nhomepage: https://github.com/roc-lang/roc/tree/main/crates/language_server#roc_language_server\nlicenses: [\"UPL-1.0\"]\nlanguages: [\"Roc\"]\ncategories: [\"LSP\"]\n\nsource:\n  id: pkg:github/roc-lang/roc@alpha4-rolling\n  asset:\n    - target: linux_arm64\n      file: roc-linux_arm64-{{version}}.tar.gz\n      bin: roc_nightly-linux_arm64-2025-09-09-d73ea10/roc_language_server\n    - target: linux_x64\n      file: roc-linux_x86_64-{{version}}.tar.gz\n      bin: roc_nightly-linux_x86_64-2025-09-09-d73ea109/roc_language_server\n    - target: darwin_arm64\n      file: roc-macos_apple_silicon-{{version}}.tar.gz\n      bin: roc_nightly-macos_apple_silicon-2025-09-09-d73ea109cc2/roc_language_server\n    - target: darwin_x64\n      file: roc-macos_x86_64-{{version}}.tar.gz\n      bin: roc_nightly-macos_x86_64-2025-09-09-d73ea109/roc_language_server\n\nbin:\n  roc_language_server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: roc_ls\n"
  },
  {
    "path": "packages/rpm_lsp_server/package.yaml",
    "content": "---\nname: rpm_lsp_server\ndescription: Language server protocol (LSP) support for RPM Spec files.\nhomepage: https://github.com/dcermak/rpm-spec-language-server\nlicenses:\n  - GPL-2.0\nlanguages:\n  - Spec\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/rpm-spec-language-server@0.0.2\n\nbin:\n  rpm_lsp_server: pypi:rpm_lsp_server\n\nneovim:\n  lspconfig: rpmspec\n"
  },
  {
    "path": "packages/rpmlint/package.yaml",
    "content": "---\nname: rpmlint\ndescription: Rpmlint is a tool for checking common errors in RPM packages.\nhomepage: https://pypi.org/project/rpmlint/\nlicenses:\n  - GPL-2.0-or-later\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/rpmlint@2.9.0\n\nbin:\n  rpmlint: pypi:rpmlint\n"
  },
  {
    "path": "packages/rshtml-analyzer/package.yaml",
    "content": "---\nname: rshtml-analyzer\ndescription: |\n  rshtml-analyzer is an implementation of the Language Server Protocol (LSP)\n  for the RsHtml templating language which elegantly combines Rust and HTML.\nhomepage: https://github.com/rshtml/rshtml-analyzer\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - RsHtml\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/rshtml/rshtml-analyzer@v0.1.7\n  asset:\n    # Linux\n    - target: linux_x64_gnu\n      file: rshtml-analyzer-linux-x64.tar.gz\n      bin: rshtml-analyzer\n    - target: linux_arm64_gnu\n      file: rshtml-analyzer-linux-arm64.tar.gz\n      bin: rshtml-analyzer\n    - target: linux_x64_musl\n      file: rshtml-analyzer-linux-x64-musl.tar.gz\n      bin: rshtml-analyzer\n    # macOS\n    - target: darwin_x64\n      file: rshtml-analyzer-macos-x64.tar.gz\n      bin: rshtml-analyzer\n    - target: darwin_arm64\n      file: rshtml-analyzer-macos-arm64.tar.gz\n      bin: rshtml-analyzer\n    # Windows\n    - target: win_x64\n      file: rshtml-analyzer-windows-x64.tar.gz\n      bin: rshtml-analyzer.exe\n    - target: win_arm64\n      file: rshtml-analyzer-windows-arm64.tar.gz\n      bin: rshtml-analyzer.exe\n\nbin:\n  rshtml-analyzer: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/rstcheck/package.yaml",
    "content": "---\nname: rstcheck\ndescription: Checks syntax of reStructuredText and code blocks nested within it.\nhomepage: https://rstcheck.readthedocs.io/\nlicenses:\n  - MIT\nlanguages:\n  - reStructuredText\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/rstcheck@6.2.5\n\nbin:\n  rstcheck: pypi:rstcheck\n"
  },
  {
    "path": "packages/rubocop/package.yaml",
    "content": "---\nname: rubocop\ndescription: The Ruby Linter/Formatter that Serves and Protects.\nhomepage: https://rubocop.org\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - Formatter\n  - Linter\n  - LSP\n\nsource:\n  id: pkg:gem/rubocop@1.86.1\n\nbin:\n  rubocop: gem:rubocop\n\nneovim:\n  lspconfig: rubocop\n"
  },
  {
    "path": "packages/ruby-lsp/package.yaml",
    "content": "---\nname: ruby-lsp\ndescription: |\n  This gem is an implementation of the language server protocol specification for Ruby, used to improve editor features.\nhomepage: https://github.com/Shopify/ruby-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:gem/ruby-lsp@0.26.9\n  extra_packages:\n    - ruby-lsp-rails\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/Shopify/ruby-lsp/v{{version}}/vscode/package.json\n\nbin:\n  ruby-lsp: gem:ruby-lsp\n\nneovim:\n  lspconfig: ruby_lsp\n"
  },
  {
    "path": "packages/rubyfmt/package.yaml",
    "content": "---\nname: rubyfmt\ndescription: Ruby Autoformatter!\nhomepage: https://github.com/fables-tales/rubyfmt\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/fables-tales/rubyfmt@v0.13.0\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: rubyfmt-{{version}}-Darwin-arm64.tar.gz\n      bin: tmp/releases/{{version}}-Darwin/rubyfmt\n    - target: linux_x64_gnu\n      file: rubyfmt-{{version}}-Linux-x86_64.tar.gz\n      bin: tmp/releases/{{version}}-Linux/rubyfmt\n    - target: linux_arm64_gnu\n      file: rubyfmt-{{version}}-Linux-aarch64.tar.gz\n      bin: tmp/releases/{{version}}-Linux/rubyfmt\n\n  version_overrides:\n    - constraint: semver:<=v0.8.1\n      id: pkg:github/fables-tales/rubyfmt@v0.8.1\n      asset:\n        - target: [darwin_x64, darwin_arm64]\n          file: rubyfmt-{{version}}-Darwin-arm64.tar.gz\n          bin: tmp/releases/{{version}}-Darwin/rubyfmt\n        - target: linux_x64_gnu\n          file: rubyfmt-{{version}}-Linux.tar.gz\n          bin: tmp/releases/{{version}}-Linux/rubyfmt\n\nbin:\n  rubyfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/ruff/package.yaml",
    "content": "---\nname: ruff\ndescription: An extremely fast Python linter and code formatter, written in Rust.\nhomepage: https://github.com/astral-sh/ruff/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:pypi/ruff@0.15.12\n\nbin:\n  ruff: pypi:ruff\n\nneovim:\n  lspconfig: ruff\n"
  },
  {
    "path": "packages/rufo/package.yaml",
    "content": "---\nname: rufo\ndescription: |\n  Rufo is as an opinionated ruby formatter, intended to be used via the command line as a text-editor plugin, to\n  autoformat files on save or on demand.\n\n  Unlike the best known Ruby formatter RuboCop, Rufo offers little in the way of configuration. Like other language\n  formatters such as gofmt, prettier, and autopep8, we strive to find a \"one true format\" for Ruby code, and make sure\n  your code adheres to it, with zero config where possible.\nhomepage: https://github.com/ruby-formatter/rufo\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:gem/rufo@0.18.2\n\nbin:\n  rufo: gem:rufo\n"
  },
  {
    "path": "packages/rumdl/package.yaml",
    "content": "---\nname: rumdl\ndescription: Fast Markdown linter and formatter.\nhomepage: https://github.com/rvben/rumdl\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:github/rvben/rumdl@v0.1.81\n  asset:\n    - target: darwin_arm64\n      file: rumdl-{{version}}-aarch64-apple-darwin.tar.gz\n      bin: rumdl\n    - target: darwin_x64\n      file: rumdl-{{version}}-x86_64-apple-darwin.tar.gz\n      bin: rumdl\n    - target: linux_x64_gnu\n      file: rumdl-{{version}}-x86_64-unknown-linux-gnu.tar.gz\n      bin: rumdl\n    - target: linux_arm64_gnu\n      file: rumdl-{{version}}-aarch64-unknown-linux-gnu.tar.gz\n      bin: rumdl\n    - target: linux_x64\n      file: rumdl-{{version}}-x86_64-unknown-linux-musl.tar.gz\n      bin: rumdl\n    - target: linux_arm64\n      file: rumdl-{{version}}-aarch64-unknown-linux-musl.tar.gz\n      bin: rumdl\n    - target: win_x64\n      file: rumdl-{{version}}-x86_64-pc-windows-msvc.zip\n      bin: rumdl.exe\n\nbin:\n  rumdl: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: rumdl\n"
  },
  {
    "path": "packages/rust-analyzer/package.yaml",
    "content": "---\nname: rust-analyzer\ndescription: |\n  rust-analyzer is an implementation of the Language Server Protocol for the\n  Rust programming language. It provides features like completion and goto\n  definition for many code editors, including VS Code, Emacs and Vim.\nhomepage: https://github.com/rust-lang/rust-analyzer\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Rust\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/rust-lang/rust-analyzer@2026-04-20\n  asset:\n    - target: linux_x64_gnu\n      file: rust-analyzer-x86_64-unknown-linux-gnu.gz\n      bin: rust-analyzer-x86_64-unknown-linux-gnu\n    - target: linux_arm64_gnu\n      file: rust-analyzer-aarch64-unknown-linux-gnu.gz\n      bin: rust-analyzer-aarch64-unknown-linux-gnu\n    - target: linux_x64_musl\n      file: rust-analyzer-x86_64-unknown-linux-musl.gz\n      bin: rust-analyzer-x86_64-unknown-linux-musl\n    - target: darwin_x64\n      file: rust-analyzer-x86_64-apple-darwin.gz\n      bin: rust-analyzer-x86_64-apple-darwin\n    - target: darwin_arm64\n      file: rust-analyzer-aarch64-apple-darwin.gz\n      bin: rust-analyzer-aarch64-apple-darwin\n    - target: win_x64\n      file: rust-analyzer-x86_64-pc-windows-msvc.zip\n      bin: rust-analyzer.exe\n    - target: win_arm64\n      file: rust-analyzer-aarch64-pc-windows-msvc.zip\n      bin: rust-analyzer.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/rust-analyzer/rust-analyzer/{{version}}/editors/code/package.json\n\nbin:\n  rust-analyzer: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: rust_analyzer\n"
  },
  {
    "path": "packages/rust_hdl/package.yaml",
    "content": "---\nname: rust_hdl\ndescription: |\n  rust_hdl is a VHDL language server and analysis library written in Rust. A complete VHDL language server protocol\n  implementation with diagnostics, navigate to symbol, find all references etc.\nhomepage: https://github.com/VHDL-LS/rust_hdl\nlicenses:\n  - MPL-2.0\nlanguages:\n  - VHDL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/vhdl-ls/rust_hdl@v0.86.0\n  asset:\n    - target: darwin_arm64\n      file: vhdl_ls-aarch64-apple-darwin.zip\n      bin: vhdl_ls-aarch64-apple-darwin/bin/vhdl_ls\n      libraries: vhdl_ls-aarch64-apple-darwin/vhdl_libraries/\n    - target: linux_x64\n      file: vhdl_ls-x86_64-unknown-linux-musl.zip\n      bin: vhdl_ls-x86_64-unknown-linux-musl/bin/vhdl_ls\n      libraries: vhdl_ls-x86_64-unknown-linux-musl/vhdl_libraries/\n    - target: win_x64\n      file: vhdl_ls-x86_64-pc-windows-msvc.zip\n      bin: vhdl_ls-x86_64-pc-windows-msvc/bin/vhdl_ls.exe\n      libraries: vhdl_ls-x86_64-pc-windows-msvc/bin/vhdl_libraries/\n\nbin:\n  vhdl_ls: \"{{source.asset.bin}}\"\n\nshare:\n  vhdl_libraries/: \"{{source.asset.libraries}}\"\n\nneovim:\n  lspconfig: vhdl_ls\n"
  },
  {
    "path": "packages/rustywind/package.yaml",
    "content": "---\nname: rustywind\ndescription: CLI for organizing Tailwind CSS classes.\nhomepage: https://github.com/avencera/rustywind\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Angular\n  - HTML\n  - JSX\n  - JavaScript\n  - TypeScript\n  - Vue\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/rustywind@0.24.3\n\nbin:\n  rustywind: npm:rustywind\n"
  },
  {
    "path": "packages/salt-lint/package.yaml",
    "content": "---\nname: salt-lint\ndescription: A command-line utility that checks for best practices in SaltStack.\nhomepage: https://github.com/warpnet/salt-lint\nlicenses:\n  - MIT\nlanguages:\n  - Salt\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/salt-lint@0.9.2\n\nbin:\n  salt-lint: pypi:salt-lint\n"
  },
  {
    "path": "packages/salt-lsp/package.yaml",
    "content": "---\nname: salt-lsp\ndescription: Salt Language Server Protocol Server.\nhomepage: https://github.com/dcermak/salt-lsp\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Salt\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/salt-lsp@0.0.1\n\nbin:\n  salt_lsp_server: pypi:salt_lsp_server\nneovim:\n  lspconfig: salt_ls\n"
  },
  {
    "path": "packages/selene/package.yaml",
    "content": "---\nname: selene\ndescription: A blazing-fast modern Lua linter written in Rust.\nhomepage: https://kampfkarren.github.io/selene/\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Lua\n  - Luau\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/Kampfkarren/selene@0.30.1\n  asset:\n    - target: [darwin_arm64, darwin_x64]\n      file: selene-{{version}}-macos.zip\n      bin: selene\n    - target: linux_x64\n      file: selene-{{version}}-linux.zip\n      bin: selene\n    - target: win_x64\n      file: selene-{{version}}-windows.zip\n      bin: selene.exe\n\nbin:\n  selene: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/semgrep/package.yaml",
    "content": "---\nname: semgrep\ndescription: |\n  Semgrep is a fast, open-source, static analysis engine for finding bugs, detecting vulnerabilities in third-party\n  dependencies, and enforcing code standards.\nhomepage: https://github.com/returntocorp/semgrep\nlicenses:\n  - LGPL-2.1-or-later\nlanguages:\n  - C#\n  - Go\n  - JSON\n  - Java\n  - JavaScript\n  - PHP\n  - Python\n  - Ruby\n  - Scala\n  - TypeScript\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/semgrep@1.161.0\n  supported_platforms:\n    - unix\n\nbin:\n  semgrep: pypi:semgrep\n  pysemgrep: pypi:pysemgrep\n"
  },
  {
    "path": "packages/serve-d/package.yaml",
    "content": "---\nname: serve-d\ndescription: Microsoft language server protocol implementation for D using workspace-d.\nhomepage: https://github.com/Pure-D/serve-d\nlicenses:\n  - MIT\nlanguages:\n  - D\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/Pure-D/serve-d@v0.7.6\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: serve-d_{{ version | strip_prefix \"v\" }}-osx-x86_64.tar.xz\n      bin: serve-d\n    - target: linux_x64\n      file: serve-d_{{ version | strip_prefix \"v\" }}-linux-x86_64.tar.xz\n      bin: serve-d\n    - target: win_x64\n      file: serve-d_{{ version | strip_prefix \"v\" }}-windows-x86_64.zip\n      bin: serve-d.exe\n    - target: win_x86\n      file: serve-d_{{ version | strip_prefix \"v\" }}-windows-x86.zip\n      bin: serve-d.exe\n\nbin:\n  serve-d: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: serve_d\n"
  },
  {
    "path": "packages/shellcheck/package.yaml",
    "content": "---\nname: shellcheck\ndescription: ShellCheck, a static analysis tool for shell scripts.\nhomepage: https://www.shellcheck.net/\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Bash\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/vscode-shellcheck/shellcheck-binaries@v0.11.0\n  asset:\n    - target: darwin_arm64\n      file: shellcheck-{{version}}.darwin.aarch64.tar.gz\n      bin: shellcheck\n    - target: darwin_x64\n      file: shellcheck-{{version}}.darwin.x86_64.tar.gz\n      bin: shellcheck\n    - target: linux_x64\n      file: shellcheck-{{version}}.linux.x86_64.tar.gz\n      bin: shellcheck\n    - target: linux_arm64\n      file: shellcheck-{{version}}.linux.aarch64.tar.gz\n      bin: shellcheck\n    - target: linux_arm\n      file: shellcheck-{{version}}.linux.armv6hf.tar.gz\n      bin: shellcheck\n    - target: win_x64\n      file: shellcheck-{{version}}.windows.x86_64.tar.gz\n      bin: shellcheck.exe\n\nbin:\n  shellcheck: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/shellharden/package.yaml",
    "content": "---\nname: shellharden\ndescription: The corrective bash syntax highlighter.\nhomepage: https://github.com/anordal/shellharden\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Bash\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:cargo/shellharden@4.3.1\n\nbin:\n  shellharden: cargo:shellharden\n"
  },
  {
    "path": "packages/shfmt/package.yaml",
    "content": "---\nname: shfmt\ndescription: A shell formatter (sh/bash/mksh).\nhomepage: https://github.com/mvdan/sh\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Bash\n  - Mksh\n  - Shell\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/mvdan/sh@v3.13.1\n  asset:\n    - target: darwin_arm64\n      file: shfmt_{{version}}_darwin_arm64\n    - target: darwin_x64\n      file: shfmt_{{version}}_darwin_amd64\n    - target: linux_arm64\n      file: shfmt_{{version}}_linux_arm64\n    - target: linux_x64\n      file: shfmt_{{version}}_linux_amd64\n    - target: win_x86\n      file: shfmt_{{version}}_windows_386.exe\n    - target: win_x64\n      file: shfmt_{{version}}_windows_amd64.exe\n\nbin:\n  shfmt: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/shopify-cli/package.yaml",
    "content": "---\nname: shopify-cli\ndescription: |\n  Command-line interface tool that helps you generate and work with Shopify apps, themes and custom storefronts.\nhomepage: https://shopify.dev/docs/api/shopify-cli\nlicenses:\n  - MIT\nlanguages:\n  - Liquid\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:npm/%40shopify/cli@3.94.1\n\nbin:\n  shopify: npm:shopify\n\nneovim:\n  lspconfig: shopify_theme_ls\n"
  },
  {
    "path": "packages/sith-language-server/package.yaml",
    "content": "---\nname: sith-language-server\ndescription: An experimental language server for the Python programming language. - made in Rust.\nhomepage: https://github.com/LaBatata101/sith-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/LaBatata101/sith-language-server@v0.2.2-alpha\n  asset:\n    - target: darwin_arm64\n      file: sith-lsp-aarch64-apple-darwin.tar.gz\n      bin: sith-lsp-aarch64-apple-darwin/sith-lsp\n    - target: darwin_x64\n      file: sith-lsp-x86_64-apple-darwin.tar.gz\n      bin: sith-lsp-x86_64-apple-darwin/sith-lsp\n    - target: linux_arm64_gnu\n      file: sith-lsp-aarch64-unknown-linux-gnu.tar.gz\n      bin: sith-lsp-aarch64-unknown-linux-gnu/sith-lsp\n    - target: linux_arm64_musl\n      file: sith-lsp-aarch64-unknown-linux-musl.tar.gz\n      bin: sith-lsp-aarch64-unknown-linux-musl/sith-lsp\n    - target: linux_x64_gnu\n      file: sith-lsp-x86_64-unknown-linux-gnu.tar.gz\n      bin: sith-lsp-x86_64-unknown-linux-gnu/sith-lsp\n    - target: linux_x64_musl\n      file: sith-lsp-x86_64-unknown-linux-musl.tar.gz\n      bin: sith-lsp-x86_64-unknown-linux-musl/sith-lsp\n    - target: win_x64\n      file: sith-lsp-x86_64-pc-windows-msvc.zip\n      bin: sith-lsp.exe\n    - target: win_arm64\n      file: sith-lsp-aarch64-pc-windows-msvc.zip\n      bin: sith-lsp.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/LaBatata101/sith-language-server/{{version}}/editors/vscode/package.json\n\nbin:\n  sith-lsp: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/slang/package.yaml",
    "content": "---\nname: slang\ndescription: |\n  Slang is a shading language that makes it easier to build and maintain large shader codebases in a modular and\n  extensible fashion, while also maintaining the highest possible performance on modern GPUs and graphics APIs. Slang is\n  based on years of collaboration between researchers at NVIDIA, Carnegie Mellon University, and Stanford.\nhomepage: https://shader-slang.com/\nlicenses:\n  - MIT\nlanguages:\n  - Slang\ncategories:\n  - LSP\n  - Compiler\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/shader-slang/slang@v2026.7.1\n  asset:\n    - target: linux_x64_gnu\n      file: slang-{{ version | strip_prefix \"v\" }}-linux-x86_64.tar.gz\n      bin:\n        slangd: bin/slangd\n        slangc: bin/slangc\n    - target: darwin_x64\n      file: slang-{{ version | strip_prefix \"v\" }}-macos-x86_64.tar.gz\n      bin:\n        slangd: bin/slangd\n        slangc: bin/slangc\n    - target: darwin_arm64\n      file: slang-{{ version | strip_prefix \"v\" }}-macos-aarch64.tar.gz\n      bin:\n        slangd: bin/slangd\n        slangc: bin/slangc\n    - target: win_x64\n      file: slang-{{ version | strip_prefix \"v\" }}-windows-x86_64.zip\n      bin:\n        slangd: bin/slangd.exe\n        slangc: bin/slangc.exe\n    - target: win_arm64\n      file: slang-{{ version | strip_prefix \"v\" }}-windows-aarch64.zip\n      bin:\n        slangd: bin/slangd.exe\n        slangc: bin/slangc.exe\n\nbin:\n  slangd: \"{{source.asset.bin.slangd}}\"\n  slangc: \"{{source.asset.bin.slangc}}\"\n\nneovim:\n  lspconfig: slangd\n"
  },
  {
    "path": "packages/sleek/package.yaml",
    "content": "---\nname: sleek\ndescription: Sleek is a CLI tool for formatting SQL.\nhomepage: https://github.com/nrempel/sleek\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/nrempel/sleek@v0.5.0\n  asset:\n    - target: linux_x64\n      file: sleek-linux-x86_64\n    - target: darwin_x64\n      file: sleek-macos-x86_64\n    - target: darwin_arm64\n      file: sleek-macos-aarch64\n    - target: win_x64\n      file: sleek-windows-x86_64.exe\n\nbin:\n  sleek: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/slint-lsp/package.yaml",
    "content": "---\nname: slint-lsp\ndescription: A LSP Server that adds features like auto-complete and live preview of the .slint files to many editors.\nhomepage: https://slint-ui.com/\nlicenses:\n  - proprietary\n  - GPL-3.0-or-later\nlanguages:\n  - Slint\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/slint-ui/slint@v1.16.1\n  asset:\n    - target: linux_x64\n      file: slint-lsp-linux.tar.gz\n      bin: slint-lsp/slint-lsp\n    - target: win_x64\n      file: slint-lsp-windows-x86_64.zip\n      bin: slint-lsp.exe\n    - target: [darwin_x64, darwin_arm64]\n      file: slint-lsp-macos.tar.gz\n      bin: slint-lsp/slint-lsp\n  version_overrides:\n    - constraint: semver:<=v1.12.1\n      id: pkg:github/slint-ui/slint@v1.12.1\n      asset:\n        - target: linux_x64\n          file: slint-lsp-linux.tar.gz\n          bin: slint-lsp/slint-lsp\n        - target: win_x64\n          file: slint-lsp-windows-x86_64.zip\n          bin: slint-lsp/slint-lsp.exe\n        - target: [darwin_x64, darwin_arm64]\n          file: slint-lsp-macos.tar.gz\n          bin: slint-lsp/slint-lsp\n    - constraint: semver:<=v1.12.0\n      id: pkg:github/slint-ui/slint@v1.12.0\n      asset:\n        - target: linux_x64\n          file: slint-lsp-linux.tar.gz\n          bin: slint-lsp/slint-lsp\n        - target: win_x64\n          file: slint-lsp-windows.zip\n          bin: slint-lsp/slint-lsp.exe\n        - target: [darwin_x64, darwin_arm64]\n          file: slint-lsp-macos.tar.gz\n          bin: slint-lsp/slint-lsp\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/slint-ui/slint/{{version}}/editors/vscode/package.json\n\nbin:\n  slint-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: slint_lsp\n"
  },
  {
    "path": "packages/smithy-language-server/package.yaml",
    "content": "---\nname: smithy-language-server\ndescription: A Language Server Protocol implementation for the Smithy IDL.\nhomepage: https://github.com/awslabs/smithy-language-server\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Smithy\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/awslabs/smithy-language-server@0.8.0\n  asset:\n    - target: darwin_x64\n      file: smithy-language-server-darwin-x86_64.zip\n      bin: bin/smithy-language-server\n    - target: darwin_arm64\n      file: smithy-language-server-darwin-aarch64.zip\n      bin: bin/smithy-language-server\n    - target: linux_x64\n      file: smithy-language-server-linux-x86_64.zip\n      bin: bin/smithy-language-server\n    - target: linux_arm64\n      file: smithy-language-server-linux-aarch64.zip\n      bin: bin/smithy-language-server\n    - target: win_x64\n      file: smithy-language-server-windows-x86_64.zip\n      bin: bin/smithy-language-server.bat\n\n  version_overrides:\n    - constraint: semver:<=0.7.0\n      id: pkg:github/awslabs/smithy-language-server@0.7.0\n      asset:\n        - target: darwin_x64\n          file: smithy-language-server-darwin-x86_64.zip\n          bin: smithy-language-server-darwin-x86_64/bin/smithy-language-server\n        - target: darwin_arm64\n          file: smithy-language-server-darwin-aarch64.zip\n          bin: smithy-language-server-darwin-aarch64/bin/smithy-language-server\n        - target: linux_x64\n          file: smithy-language-server-linux-x86_64.zip\n          bin: smithy-language-server-linux-x86_64/bin/smithy-language-server\n        - target: linux_arm64\n          file: smithy-language-server-linux-aarch64.zip\n          bin: smithy-language-server-linux-aarch64/bin/smithy-language-server\n        - target: win_x64\n          file: smithy-language-server-windows-x64.zip\n          bin: smithy-language-server-windows-x64/bin/smithy-language-server.bat\n\nbin:\n  smithy-language-server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: smithy_ls\n"
  },
  {
    "path": "packages/snakefmt/package.yaml",
    "content": "---\nname: snakefmt\ndescription: The uncompromising Snakemake code formatter.\nhomepage: https://github.com/snakemake/snakefmt\nlicenses:\n  - MIT\nlanguages:\n  - Snakemake\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/snakefmt@1.1.0\n\nbin:\n  snakefmt: pypi:snakefmt\n"
  },
  {
    "path": "packages/snakeskin-cli/package.yaml",
    "content": "---\nname: snakeskin-cli\ndescription: Snakeskin is an awesome JavaScript template engine with the best support for inheritance.\nhomepage: https://github.com/SnakeskinTpl/language-tools/tree/main/packages/cli\nlicenses:\n  - MIT\nlanguages:\n  - Snakeskin\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40snakeskin/cli@0.0.8\n\nbin:\n  snakeskin-cli: npm:snakeskin-cli\n\nneovim:\n  lspconfig: snakeskin_ls\n"
  },
  {
    "path": "packages/snyk/package.yaml",
    "content": "---\nname: snyk\ndescription: |\n  Snyk CLI scans and monitors your projects for security vulnerabilities\nhomepage: https://github.com/snyk/cli\nlicenses:\n  - Apache-2.0\nlanguages:\n  - .NET\n  - Apex\n  - C#\n  - C++\n  - Dart\n  - Docker\n  - Elixir\n  - Go\n  - Groovy\n  - Helm\n  - Java\n  - JavaScript\n  - Kotlin\n  - PHP\n  - Python\n  - Ruby\n  - Rust\n  - Scala\n  - Swift\n  - Terraform\n  - TypeScript\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:github/snyk/cli@v1.1304.0\n  asset:\n    - target: darwin_x64\n      file: snyk-macos\n    - target: darwin_arm64\n      file: snyk-macos-arm64\n    - target: linux_x64_gnu\n      file: snyk-linux\n    - target: linux_arm64_gnu\n      file: snyk-linux-arm64\n    - target: win_x64\n      file: snyk-win.exe\n\nbin:\n  snyk: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: snyk_ls\n"
  },
  {
    "path": "packages/snyk-ls/package.yaml",
    "content": "---\nname: snyk-ls\ndescription: |\n  The language server follows the Language Server Protocol and integrates with Snyk Open Source, Snyk Infrastructure as\n  Code and Snyk Code. For the former two, it uses the Snyk CLI as a data provider, for the latter it is connecting\n  directly to the Snyk Code API.\nhomepage: https://github.com/snyk/snyk-ls\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Snyk\ncategories:\n  - LSP\nci_skip: true\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/snyk/snyk-ls@v20250325.145416\n  asset:\n    - target: darwin_x64\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_darwin_amd64\n    - target: darwin_arm64\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_darwin_arm64\n    - target: linux_x64\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_linux_amd64\n    - target: linux_x86\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_linux_386\n    - target: linux_arm64\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_linux_arm64\n    - target: win_x86\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_windows_386.exe\n    - target: win_x64\n      file: snyk-ls_{{ version | strip_prefix \"v\" }}_windows_amd64.exe\n\nbin:\n  snyk-ls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: snyk_ls\n"
  },
  {
    "path": "packages/solang/package.yaml",
    "content": "---\nname: solang\ndescription: Solidity Compiler for Solana, Substrate, and ewasm.\nhomepage: https://solang.readthedocs.io/en/latest/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Solidity\ncategories:\n  - LSP\n  - Compiler\n\nsource:\n  id: pkg:github/hyperledger-labs/solang@v0.3.4\n  asset:\n    - target: darwin_x64\n      file: solang-mac-intel\n      bin: solang-mac-intel\n    - target: darwin_arm64\n      file: solang-mac-arm\n      bin: solang-mac-arm\n    - target: linux_arm64\n      file: solang-linux-arm64\n      bin: solang-linux-arm64\n    - target: linux_x64\n      file: solang-linux-x86-64\n      bin: solang-linux-x86-64\n    - target: win_x64\n      file: solang.exe\n      bin: solang.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/hyperledger-solang/solang/{{version}}/vscode/package.json\n\nbin:\n  solang: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: solang\n"
  },
  {
    "path": "packages/solang-llvm/package.yaml",
    "content": "---\nname: solang-llvm\ndescription: Solang requires Solana's LLVM fork. We provide pre-built binaries compatible with Solang.\nhomepage: https://github.com/hyperledger/solang-llvm\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Solidity\ncategories:\n  - LSP\n  - Compiler\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/hyperledger/solang-llvm@llvm15-0\n  asset:\n    - target: darwin_x64\n      file: llvm15.0-mac-intel.tar.xz\n    - target: darwin_arm64\n      file: llvm15.0-mac-arm.tar.xz\n    - target: linux_arm64\n      file: llvm15.0-linux-arm64.tar.xz\n    - target: linux_x64\n      file: llvm15.0-linux-x86-64.tar.xz\n    - target: win_x64\n      file: llvm15.0-win.zip\n\nopt:\n  solang/llvm15.0/: llvm15.0/\n"
  },
  {
    "path": "packages/solargraph/package.yaml",
    "content": "---\nname: solargraph\ndescription: Solargraph is a Ruby gem that provides intellisense features through the language server protocol.\nhomepage: https://solargraph.org\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:gem/solargraph@0.58.3\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/castwide/vscode-solargraph/master/package.json\n\nbin:\n  solargraph: gem:solargraph\n\nneovim:\n  lspconfig: solargraph\n"
  },
  {
    "path": "packages/solhint/package.yaml",
    "content": "---\nname: solhint\ndescription: Solhint is a linting utility for Solidity code.\nhomepage: https://protofire.github.io/solhint/\nlicenses:\n  - MIT\nlanguages:\n  - Solidity\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/solhint@6.2.1\n\nbin:\n  solhint: npm:solhint\n"
  },
  {
    "path": "packages/solidity/package.yaml",
    "content": "---\nname: solidity\ndescription: Solidity, the Smart Contract Programming Language.\nhomepage: https://github.com/ethereum/solidity\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - Solidity\ncategories:\n  - Compiler\n  - LSP\n\nsource:\n  id: pkg:github/ethereum/solidity@v0.8.34\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: solc-macos\n    - target: linux_x64\n      file: solc-static-linux\n    - target: win_x64\n      file: solc-windows.exe\n\nbin:\n  solc: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: solc\n"
  },
  {
    "path": "packages/solidity-ls/package.yaml",
    "content": "---\nname: solidity-ls\ndescription: Solidity language server.\nhomepage: https://github.com/qiuxiang/solidity-ls\nlicenses:\n  - proprietary\nlanguages:\n  - Solidity\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/solidity-ls@0.5.4\n\nbin:\n  solidity-ls: npm:solidity-ls\n\nneovim:\n  lspconfig: solidity\n"
  },
  {
    "path": "packages/some-sass-language-server/package.yaml",
    "content": "---\nname: some-sass-language-server\ndescription: Full support for @use and @forward, including aliases, prefixes and hiding. Rich documentation through SassDoc. Workspace-wide code navigation and refactoring.\nhomepage: https://github.com/wkillerud/some-sass/tree/main/packages/language-server\nlicenses:\n  - MIT\nlanguages:\n  - SCSS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/some-sass-language-server@2.3.8\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/wkillerud/some-sass/some-sass-language-server@{{version}}/vscode-extension/package.json\n\nbin:\n  some-sass-language-server: npm:some-sass-language-server\n\nneovim:\n  lspconfig: somesass_ls\n"
  },
  {
    "path": "packages/sonarlint-language-server/package.yaml",
    "content": "---\nname: sonarlint-language-server\ndescription: SonarLint Language Server.\nhomepage: https://github.com/SonarSource/sonarlint-vscode\nlicenses:\n  - LGPL-3.0\nlanguages:\n  - AzureResourceManager\n  - C\n  - C++\n  - C#\n  - CloudFormation\n  - CSS\n  - Docker\n  - Go\n  - HTML\n  - IPython\n  - Java\n  - JavaScript\n  - Kubernetes\n  - TypeScript\n  - Python\n  - PHP\n  - Terraform\n  - Text\n  - XML\n  - YAML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/SonarSource/sonarlint-vscode@4.39.0%2B79757\n  asset:\n    file: sonarlint-vscode-4.39.0.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/SonarSource/sonarlint-vscode/{{version}}/package.json\n\nbin:\n  sonarlint-language-server: java-jar:extension/server/sonarlint-ls.jar\n\nshare:\n  sonarlint-analyzers/: extension/analyzers/\n"
  },
  {
    "path": "packages/sorbet/package.yaml",
    "content": "---\nname: sorbet\ndescription: Sorbet is a fast, powerful type checker designed for Ruby.\nhomepage: https://sorbet.org/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:gem/sorbet@0.6.13163\n  supported_platforms:\n    - unix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/sorbet/sorbet/master/vscode_extension/package.json\n\nbin:\n  srb: gem:srb\n\nneovim:\n  lspconfig: sorbet\n"
  },
  {
    "path": "packages/sourcery/package.yaml",
    "content": "---\nname: sourcery\ndescription: |\n  Sourcery is a tool available in your IDE, GitHub, or as a CLI that suggests refactoring improvements to help make your\n  code more readable and generally higher quality.\nhomepage: https://docs.sourcery.ai/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/sourcery@1.43.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/swift-server/vscode-swift/main/package.json\n\nbin:\n  sourcery: pypi:sourcery\n\nneovim:\n  lspconfig: sourcery\n"
  },
  {
    "path": "packages/spectral-language-server/package.yaml",
    "content": "---\nname: spectral-language-server\ndescription: |\n  Awesome Spectral JSON/YAML linter with OpenAPI/AsyncAPI support. Spectral is a flexible object linter with out of the\n  box support for OpenAPI v2 and v3, JSON Schema, and AsyncAPI.\nhomepage: https://github.com/stoplightio/vscode-spectral\nlicenses:\n  - MIT\nlanguages:\n  - JSON\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/stoplightio/vscode-spectral@v1.1.4\n  build:\n    run: |\n      npm exec yarn@1 install\n      npm exec --package=yarn@1 'node make package'\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/stoplightio/vscode-spectral/{{version}}/package.json\n\nbin:\n  spectral-language-server: node:dist/server/index.js\n\nneovim:\n  lspconfig: spectral\n"
  },
  {
    "path": "packages/sphinx-lint/package.yaml",
    "content": "---\nname: sphinx-lint\ndescription: Linter for stylistic and formal issues in Sphinx documentation\nhomepage: https://github.com/sphinx-contrib/sphinx-lint\nlicenses:\n  - PSF-2.0\nlanguages:\n  - reStructuredText\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/sphinx-lint@1.0.2\n\nbin:\n  sphinx-lint: pypi:sphinx-lint\n"
  },
  {
    "path": "packages/spyglassmc-language-server/package.yaml",
    "content": "---\nname: spyglassmc-language-server\ndescription: This is a language server wrapped around some other Spyglass packages.\nhomepage: https://github.com/SpyglassMC/Spyglass/tree/main/packages/language-server\nlicenses:\n  - MIT\nlanguages:\n  - MCFunction\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40spyglassmc/language-server@0.4.57\n\nbin:\n  spyglassmc-language-server: npm:spyglassmc-language-server\n\nneovim:\n  lspconfig: spyglassmc_language_server\n"
  },
  {
    "path": "packages/sql-formatter/package.yaml",
    "content": "---\nname: sql-formatter\ndescription: A whitespace formatter for different query languages.\nhomepage: https://sql-formatter-org.github.io/sql-formatter/\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/sql-formatter@15.7.3\n\nbin:\n  sql-formatter: npm:sql-formatter\n"
  },
  {
    "path": "packages/sqlfluff/package.yaml",
    "content": "---\nname: sqlfluff\ndescription: SQLFluff is a dialect-flexible and configurable SQL linter.\nhomepage: https://github.com/sqlfluff/sqlfluff\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/sqlfluff@4.1.0\n\nbin:\n  sqlfluff: pypi:sqlfluff\n"
  },
  {
    "path": "packages/sqlfmt/package.yaml",
    "content": "---\nname: sqlfmt\ndescription: sqlfmt formats your dbt SQL files so you don't have to. It is similar in nature to black, gofmt, and rustfmt (but for SQL).\nhomepage: https://sqlfmt.com/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - SQL\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/shandy-sqlfmt@0.29.0?extra=jinjafmt\n\nbin:\n  sqlfmt: pypi:sqlfmt\n"
  },
  {
    "path": "packages/sqlls/package.yaml",
    "content": "---\nname: sqlls\ndescription: SQL Language Server.\nhomepage: https://github.com/joe-re/sql-language-server\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/sql-language-server@1.7.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/joe-re/sql-language-server/v{{version}}/package.json\n\nbin:\n  sql-language-server: npm:sql-language-server\n\nneovim:\n  lspconfig: sqlls\n"
  },
  {
    "path": "packages/sqls/package.yaml",
    "content": "---\nname: sqls\ndescription: SQL language server written in Go.\nhomepage: https://github.com/sqls-server/sqls\nlicenses:\n  - MIT\nlanguages:\n  - SQL\ncategories:\n  - LSP\n\nsource:\n  id: pkg:golang/github.com/sqls-server/sqls@v0.2.46\n\nschemas:\n  lsp: https://raw.githubusercontent.com/sqls-server/sqls/{{version}}/schema.json\n\nbin:\n  sqls: golang:sqls\n\nneovim:\n  lspconfig: sqls\n"
  },
  {
    "path": "packages/sqruff/package.yaml",
    "content": "---\nname: sqruff\ndescription: |\n  A high-speed SQL linter written in Rust.\nhomepage: https://github.com/quarylabs/sqruff\nlicenses:\n  - Apache-2.0\nlanguages:\n  - SQL\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/quarylabs/sqruff@v0.38.0\n  asset:\n    - target: linux_x64\n      file: sqruff-linux-x86_64-musl.tar.gz\n      bin: sqruff\n    - target: linux_arm64\n      file: sqruff-linux-aarch64-musl.tar.gz\n      bin: sqruff\n    - target: win_x64\n      file: sqruff-windows-x86_64.zip\n      bin: sqruff.exe\n    - target: darwin_x64\n      file: sqruff-darwin-x86_64.tar.gz\n      bin: sqruff\n    - target: darwin_arm64\n      file: sqruff-darwin-aarch64.tar.gz\n      bin: sqruff\n\nbin:\n  sqruff: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: sqruff\n"
  },
  {
    "path": "packages/squawk/package.yaml",
    "content": "---\nname: squawk\ndescription: Linter for Postgres migrations & SQL\nhomepage: https://github.com/sbdchd/squawk\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Postgres\n  - SQL\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/sbdchd/squawk@v2.48.0\n  asset:\n    - target: darwin_x64\n      file: squawk-darwin-x64\n    - target: darwin_arm64\n      file: squawk-darwin-arm64\n    - target: linux_arm64\n      file: squawk-linux-arm64\n    - target: linux_x64_musl\n      file: squawk-linux-musl-x64\n    - target: linux_x64\n      file: squawk-linux-x64\n    - target: win_x64\n      file: squawk-windows-x64.exe\n\nbin:\n  squawk: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/stan-language-server/package.yaml",
    "content": "---\nname: stan-language-server\ndescription: Language server for the Stan probabilistic programming language.\nhomepage: https://github.com/tomatitito/stan-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Stan\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/stan-language-server-bin@0.4.6\n\nbin:\n  stan-language-server: npm:stan-language-server\n\nneovim:\n  lspconfig: stan_ls\n"
  },
  {
    "path": "packages/standardjs/package.yaml",
    "content": "---\nname: standardjs\ndescription: JavaScript Style Guide, with linter & automatic code fixer.\nhomepage: https://standardjs.com\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/standard@17.1.2\n\nbin:\n  standard: npm:standard\n"
  },
  {
    "path": "packages/standardrb/package.yaml",
    "content": "---\nname: standardrb\ndescription: Ruby Style Guide, with linter and automatic code fixer.\nhomepage: https://github.com/testdouble/standard/\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:gem/standard@1.54.0\n\nbin:\n  standardrb: gem:standardrb\n\nneovim:\n  lspconfig: standardrb\n"
  },
  {
    "path": "packages/starlark-rust/package.yaml",
    "content": "---\nname: starlark-rust\ndescription: A Rust implementation of the Starlark language\nhomepage: https://github.com/facebook/starlark-rust/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Starlark\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/starlark_bin@0.13.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/facebook/starlark-rust/v{{version}}/vscode/package.json\n\nbin:\n  starlark: cargo:starlark\n\nneovim:\n  lspconfig: starlark_rust\n"
  },
  {
    "path": "packages/starpls/package.yaml",
    "content": "---\nname: starpls\ndescription: |\n  Starpls is an LSP implementation for Starlark, the configuration language used by Bazel and Buck2.\nhomepage: https://github.com/withered-magic/starpls\nlicenses:\n  - MIT\n  - Apache-2.0\nlanguages:\n  - Starlark\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/withered-magic/starpls@v0.1.22\n  asset:\n    - target: darwin_arm64\n      file: starpls-darwin-arm64\n    - target: linux_x64\n      file: starpls-linux-amd64\n    - target: win_x64\n      file: starpls-windows-amd64.exe\n\nbin:\n  starpls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: starpls\n"
  },
  {
    "path": "packages/staticcheck/package.yaml",
    "content": "---\nname: staticcheck\ndescription: The advanced Go linter.\nhomepage: https://staticcheck.io/\nlicenses:\n  - MIT\nlanguages:\n  - Go\ncategories:\n  - Linter\n\nsource:\n  id: pkg:golang/honnef.co/go/tools@v0.7.0#cmd/staticcheck\n\nbin:\n  staticcheck: golang:staticcheck\n"
  },
  {
    "path": "packages/steep/package.yaml",
    "content": "---\nname: steep\ndescription: |\n  Static type checker for Ruby\nhomepage: https://github.com/soutaro/steep\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:gem/steep@2.0.0\n\nbin:\n  steep: gem:steep\n\nneovim:\n  lspconfig: steep\n"
  },
  {
    "path": "packages/stimulus-language-server/package.yaml",
    "content": "---\nname: stimulus-language-server\ndescription: Intelligent Stimulus tooling\nhomepage: https://github.com/marcoroth/stimulus-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Blade\n  - HTML\n  - PHP\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/stimulus-language-server@1.0.4\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/marcoroth/stimulus-lsp/v{{version}}/package.json\n\nbin:\n  stimulus-language-server: npm:stimulus-language-server\n\nneovim:\n  lspconfig: stimulus_ls\n"
  },
  {
    "path": "packages/stree/package.yaml",
    "content": "---\nname: stree\ndescription: A fast Ruby parser and formatter.\nhomepage: https://ruby-syntax-tree.github.io/syntax_tree/\nlicenses:\n  - MIT\nlanguages:\n  - Ruby\ncategories:\n  - LSP\n\nsource:\n  id: pkg:gem/syntax_tree@6.3.0\n\nbin:\n  stree: gem:stree\n"
  },
  {
    "path": "packages/stylelint/package.yaml",
    "content": "---\nname: stylelint\ndescription: A mighty CSS linter that helps you avoid errors and enforce conventions.\nhomepage: https://stylelint.io\nlicenses:\n  - MIT\nlanguages:\n  - CSS\n  - Sass\n  - SCSS\n  - LESS\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/stylelint@17.9.0\n\nbin:\n  stylelint: npm:stylelint\n"
  },
  {
    "path": "packages/stylelint-language-server/package.yaml",
    "content": "---\nname: stylelint-language-server\ndescription: A stylelint Language Server.\nhomepage: https://github.com/stylelint/vscode-stylelint\nlicenses:\n  - MIT\nlanguages:\n  - Stylelint\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/@stylelint/language-server@1.1.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/stylelint/vscode-stylelint/main/package.json\n\nbin:\n  stylelint-language-server: npm:stylelint-language-server\n\nneovim:\n  lspconfig: stylelint_lsp\n"
  },
  {
    "path": "packages/stylelint-lsp/package.yaml",
    "content": "---\nname: stylelint-lsp\ndeprecation:\n  message: stylelint-lsp is deprecated in favor of stylelint-language-server\n  since: \"2026-03-27\"\ndescription: A stylelint Language Server.\nhomepage: https://github.com/bmatcuk/stylelint-lsp\nlicenses:\n  - MIT\nlanguages:\n  - Stylelint\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/stylelint-lsp@2.0.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bmatcuk/coc-stylelintplus/master/package.json\n\nbin:\n  stylelint-lsp: npm:stylelint-lsp\n\nneovim:\n  lspconfig: stylelint_lsp\n"
  },
  {
    "path": "packages/stylua/package.yaml",
    "content": "---\nname: stylua\ndescription: An opinionated Lua code formatter.\nhomepage: https://github.com/JohnnyMorganz/StyLua\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Lua\n  - Luau\ncategories:\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:github/johnnymorganz/stylua@v2.4.1\n  asset:\n    - target: darwin_arm64\n      file: stylua-macos-aarch64.zip\n      bin: stylua\n    - target: darwin_x64\n      file: stylua-macos-x86_64.zip\n      bin: stylua\n    - target: linux_x64_gnu\n      file: stylua-linux-x86_64.zip\n      bin: stylua\n    - target: linux_arm64_gnu\n      file: stylua-linux-aarch64.zip\n      bin: stylua\n    - target: linux_x64\n      file: stylua-linux-x86_64-musl.zip\n      bin: stylua\n    - target: win_x64\n      file: stylua-windows-x86_64.zip\n      bin: stylua.exe\n\n  version_overrides:\n    - constraint: semver:<=v0.20.0\n      id: pkg:github/johnnymorganz/stylua@v0.20.0\n      asset:\n        - target: darwin_arm64\n          file: stylua-macos-aarch64.zip\n          bin: stylua\n        - target: darwin_x64\n          file: stylua-macos.zip\n          bin: stylua\n        - target: linux_x64_gnu\n          file: stylua-linux-x86_64.zip\n          bin: stylua\n        - target: linux_arm64_gnu\n          file: stylua-linux-aarch64.zip\n          bin: stylua\n        - target: linux_x64\n          file: stylua-linux-x86_64-musl.zip\n          bin: stylua\n        - target: win_x64\n          file: stylua-win64.zip\n          bin: stylua.exe\n\n    - constraint: semver:<=v0.19.1\n      id: pkg:github/johnnymorganz/stylua@v0.19.1\n      asset:\n        - target: darwin_arm64\n          file: stylua-macos-aarch64.zip\n          bin: stylua\n        - target: darwin_x64\n          file: stylua-macos.zip\n          bin: stylua\n        - target: linux_x64_gnu\n          file: stylua-linux-x86_64.zip\n          bin: stylua\n        - target: linux_arm64_gnu\n          file: stylua-linux-aarch64.zip\n          bin: stylua\n        - target: win_x64\n          file: stylua-win64.zip\n          bin: stylua.exe\n\nbin:\n  stylua: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: stylua\n"
  },
  {
    "path": "packages/superhtml/package.yaml",
    "content": "---\nname: superhtml\ndescription: HTML Language Server & Templating Language Library\nhomepage: https://github.com/kristoff-it/superhtml\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - SuperHTML\ncategories:\n  - LSP\n  - Formatter\n\nsource:\n  id: pkg:github/kristoff-it/superhtml@v0.6.2\n  asset:\n    - target: darwin_arm64\n      file: aarch64-macos.zip\n      bin: superhtml\n    - target: linux_arm64\n      file: aarch64-linux.tar.xz\n      bin: superhtml\n    - target: win_arm64\n      file: aarch64-windows.zip\n      bin: superhtml.exe\n    - target: darwin_x64\n      file: x86_64-macos.zip\n      bin: superhtml\n    - target: linux_x64\n      file: x86_64-linux-musl.tar.xz\n      bin: superhtml\n    - target: win_x64\n      file: x86_64-windows.zip\n      bin: superhtml.exe\n\nbin:\n  superhtml: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: superhtml\n"
  },
  {
    "path": "packages/svelte-language-server/package.yaml",
    "content": "---\nname: svelte-language-server\ndescription: A language server (implementing the language server protocol) for Svelte.\nhomepage: https://github.com/sveltejs/language-tools\nlicenses:\n  - MIT\nlanguages:\n  - Svelte\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/svelte-language-server@0.17.30\n  extra_packages:\n    - typescript-svelte-plugin\n\nbin:\n  svelteserver: npm:svelteserver\n\nneovim:\n  lspconfig: svelte\n"
  },
  {
    "path": "packages/svlangserver/package.yaml",
    "content": "---\nname: svlangserver\ndescription: |\n  A language server for systemverilog that has been tested to work with coc.nvim, VSCode, Sublime Text 4, emacs, and\n  Neovim.\nhomepage: https://github.com/imc-trading/svlangserver\nlicenses:\n  - MIT\nlanguages:\n  - SystemVerilog\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40imc-trading/svlangserver@0.4.1\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/eirikpre/VSCode-SystemVerilog/master/package.json\n\nbin:\n  svlangserver: npm:svlangserver\n\nneovim:\n  lspconfig: svlangserver\n"
  },
  {
    "path": "packages/svls/package.yaml",
    "content": "---\nname: svls\ndescription: SystemVerilog language server\nhomepage: https://github.com/dalance/svls\nlicenses:\n  - MIT\nlanguages:\n  - SystemVerilog\ncategories:\n  - LSP\n\nsource:\n  id: pkg:cargo/svls@0.2.14\n\nbin:\n  svls: cargo:svls\n\n# Very slow build on Windows.\nci_skip:\n  - win_arm\n  - win_arm64\n  - win_x64\n  - win_x86\n\nneovim:\n  lspconfig: svls\n"
  },
  {
    "path": "packages/swiftformat/package.yaml",
    "content": "---\nname: swiftformat\ndescription: A command-line tool and Xcode Extension for formatting Swift code.\nhomepage: https://github.com/nicklockwood/SwiftFormat\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/nicklockwood/SwiftFormat@0.61.0\n  asset:\n    - target: darwin_arm64\n      file: swiftformat.artifactbundle.zip\n      bin: swiftformat.artifactbundle/swiftformat-{{version}}-macos/bin/swiftformat\n\n    - target: linux_arm64_gnu\n      file: swiftformat.artifactbundle.zip\n      bin: swiftformat.artifactbundle/swiftformat-{{version}}-linux-gnu/bin/swiftformat_linux_aarch64\n\n    - target: linux_x64_gnu\n      file: swiftformat.artifactbundle.zip\n      bin: swiftformat.artifactbundle/swiftformat-{{version}}-linux-gnu/bin/swiftformat_linux\nbin:\n  swiftformat: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/swiftlint/package.yaml",
    "content": "---\nname: swiftlint\ndescription: A tool to enforce Swift style and conventions.\nhomepage: https://github.com/realm/SwiftLint\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/realm/SwiftLint@0.63.2\n  asset:\n    - target: darwin_arm64\n      file: SwiftLintBinary.artifactbundle.zip\n      bin: SwiftLintBinary.artifactbundle/macos/swiftlint\n\n    - target: linux_arm64_gnu\n      file: SwiftLintBinary.artifactbundle.zip\n      bin: SwiftLintBinary.artifactbundle/linux/arm64/swiftlint\n\n    - target: linux_x64_gnu\n      file: SwiftLintBinary.artifactbundle.zip\n      bin: SwiftLintBinary.artifactbundle/linux/amd64/swiftlint\nbin:\n  swiftlint: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/systemd-lsp/package.yaml",
    "content": "---\nname: systemd-lsp\ndescription: a language server implementation for systemd unit files made in rust\nhomepage: https://github.com/JFryy/systemd-lsp\nlicenses:\n  - MIT\nlanguages:\n  - systemd\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/JFryy/systemd-lsp@v2026.04.21\n  asset:\n    - target: darwin_x64\n      file: systemd-lsp-x86_64-apple-darwin\n    - target: darwin_arm64\n      file: systemd-lsp-x86_64-apple-darwin\n    - target: linux_x64_gnu\n      file: systemd-lsp-x86_64-unknown-linux-gnu\n    - target: win_x64\n      file: systemd-lsp-x86_64-pc-windows-msvc.exe\n\nbin:\n  systemd-lsp: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: systemd_lsp\n"
  },
  {
    "path": "packages/systemdlint/package.yaml",
    "content": "---\nname: systemdlint\ndescription: Systemd Unitfile Linter\nhomepage: https://github.com/priv-kweihmann/systemdlint\nlicenses:\n  - BSD-2-Clause\nlanguages:\n  - systemd\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/systemdlint@1.4.0\n\nbin:\n  systemdlint: pypi:systemdlint\n"
  },
  {
    "path": "packages/tabby-agent/package.yaml",
    "content": "---\nname: tabby-agent\ndescription: Tabby is a self-hosted AI coding assistant, offering an open-source and on-premises alternative to GitHub Copilot.\nhomepage: https://github.com/TabbyML/tabby\nlicenses:\n  - Apache-2.0\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/tabby-agent@1.8.0\n\nbin:\n  tabby-agent: npm:tabby-agent\n"
  },
  {
    "path": "packages/tailwindcss-language-server/package.yaml",
    "content": "---\nname: tailwindcss-language-server\ndescription: Language Server Protocol implementation for Tailwind CSS.\nhomepage: https://github.com/tailwindlabs/tailwindcss-intellisense\nlicenses:\n  - MIT\nlanguages:\n  - CSS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40tailwindcss/language-server@0.14.29\n\nschemas:\n  lsp: https://raw.githubusercontent.com/tailwindlabs/tailwindcss-intellisense/v{{version}}/packages/vscode-tailwindcss/package.json\n\nbin:\n  tailwindcss-language-server: npm:tailwindcss-language-server\n\nneovim:\n  lspconfig: tailwindcss\n"
  },
  {
    "path": "packages/taplo/package.yaml",
    "content": "---\nname: taplo\ndescription: A versatile, feature-rich TOML toolkit.\nhomepage: https://taplo.tamasfe.dev/\nlicenses:\n  - MIT\nlanguages:\n  - TOML\ncategories:\n  - LSP\n  - Formatter\n\nsource:\n  id: pkg:github/tamasfe/taplo@0.10.0\n  asset:\n    - target: darwin_arm64\n      file: taplo-darwin-aarch64.gz\n      bin: taplo-darwin-aarch64\n    - target: darwin_x64\n      file: taplo-darwin-x86_64.gz\n      bin: taplo-darwin-x86_64\n    - target: linux_x64\n      file: taplo-linux-x86_64.gz\n      bin: taplo-linux-x86_64\n    - target: linux_x86\n      file: taplo-linux-x86.gz\n      bin: taplo-linux-x86\n    - target: linux_arm64\n      file: taplo-linux-aarch64.gz\n      bin: taplo-linux-aarch64\n    - target: linux_armv7_gnu\n      file: taplo-linux-armv7.gz\n      bin: taplo-linux-armv7\n    - target: win_x64\n      file: taplo-windows-x86_64.zip\n      bin: taplo.exe\n    - target: win_x86\n      file: taplo-windows-x86.zip\n      bin: taplo.exe\n\nbin:\n  taplo: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: taplo\n"
  },
  {
    "path": "packages/tclint/package.yaml",
    "content": "---\nname: tclint\ndescription: Modern dev tools for Tcl • includes a linter, formatter, and editor integration.\nhomepage: https://github.com/nmoroze/tclint\nlicenses:\n  - MIT\nlanguages:\n  - Tcl\ncategories:\n  - Linter\n  - Formatter\n  - LSP\n\nsource:\n  id: pkg:pypi/tclint@0.8.0\n\nbin:\n  tclint: pypi:tclint\n  tclfmt: pypi:tclfmt\n  tclsp: pypi:tclsp\n\nneovim:\n  lspconfig: tclsp\n"
  },
  {
    "path": "packages/teal-language-server/package.yaml",
    "content": "---\nname: teal-language-server\ndescription: A language server for Teal, a typed dialect of Lua.\nhomepage: https://github.com/teal-language/teal-language-server\nlicenses:\n  - MIT\nlanguages:\n  - Teal\ncategories:\n  - LSP\n\nsource:\n  id: pkg:luarocks/teal-language-server@dev-1?dev=true\n\nbin:\n  teal-language-server: luarocks:teal-language-server\n\nneovim:\n  lspconfig: teal_ls\n"
  },
  {
    "path": "packages/tectonic/package.yaml",
    "content": "---\nname: tectonic\ndescription: Tectonic is a modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive.\nhomepage: https://tectonic-typesetting.github.io\nlicenses:\n  - MIT\nlanguages:\n  - LaTeX\ncategories:\n  - Compiler\n\nsource:\n  id: pkg:github/tectonic-typesetting/tectonic@tectonic%400.15.0\n  asset:\n    - target: darwin_x64\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-x86_64-apple-darwin.tar.gz\n      bin: tectonic\n    - target: darwin_arm64\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-aarch64-apple-darwin.tar.gz\n      bin: tectonic\n    - target: linux_x64_gnu\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-x86_64-unknown-linux-gnu.tar.gz\n      bin: tectonic\n    - target: linux_x64\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-x86_64-unknown-linux-musl.tar.gz\n      bin: tectonic\n    - target: linux_arm\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-arm-unknown-linux-musleabihf.tar.gz\n      bin: tectonic\n    - target: win_x64\n      file: tectonic-{{ version || strip_prefix \"tectonic@\" }}-x86_64-pc-windows-msvc.zip\n      bin: tectonic.exe\n\nbin:\n  tectonic: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/templ/package.yaml",
    "content": "---\nname: templ\ndescription: |\n  templ is the official language server for the templ HTML templating language. It provides IDE features\n  to any LSP-compatible editor.\nhomepage: https://templ.guide\nlicenses:\n  - MIT\nlanguages:\n  - Go\n  - HTML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/a-h/templ@v0.3.1001\n  asset:\n    - target: linux_arm64\n      file: templ_Linux_arm64.tar.gz\n      bin: templ\n    - target: linux_x86\n      file: templ_Linux_i386.tar.gz\n      bin: templ\n    - target: linux_x64\n      file: templ_Linux_x86_64.tar.gz\n      bin: templ\n    - target: darwin_x64\n      file: templ_Darwin_x86_64.tar.gz\n      bin: templ\n    - target: darwin_arm64\n      file: templ_Darwin_arm64.tar.gz\n      bin: templ\n    - target: win_arm64\n      file: templ_Windows_arm64.tar.gz\n      bin: templ.exe\n    - target: win_x64\n      file: templ_Windows_x86_64.tar.gz\n      bin: templ.exe\n    - target: win_x86\n      file: templ_Windows_i386.tar.gz\n      bin: templ.exe\n\nbin:\n  templ: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: templ\n"
  },
  {
    "path": "packages/termux-language-server/package.yaml",
    "content": "---\nname: termux-language-server\ndescription: A language server for some specific bash scripts.\nhomepage: https://termux-language-server.readthedocs.io/en/latest/\nlicenses:\n  - GPL-3.0\nlanguages:\n  - Bash\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/termux-language-server@0.0.31\n\nbin:\n  termux-language-server: pypi:termux-language-server\n\nneovim:\n  lspconfig: termux_language_server\n"
  },
  {
    "path": "packages/terraform/package.yaml",
    "content": "---\nname: terraform\ndescription: |\n  Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available\n  tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code,\n  edited, reviewed, and versioned.\nhomepage: https://www.terraform.io/\nlicenses:\n  - BUSL-1.1\nlanguages:\n  - Terraform\ncategories:\n  - Formatter\n  - Linter\n  - Runtime\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/hashicorp/terraform@v1.14.9\n  download:\n    - target: darwin_arm64\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_darwin_arm64.zip\n      bin: terraform\n    - target: darwin_x64\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_darwin_amd64.zip\n      bin: terraform\n    - target: linux_arm64\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_linux_arm64.zip\n      bin: terraform\n    - target: linux_arm\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_linux_arm.zip\n      bin: terraform\n    - target: linux_x64\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_linux_amd64.zip\n      bin: terraform\n    - target: linux_x86\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_linux_386.zip\n      bin: terraform\n    - target: win_x64\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: terraform.exe\n    - target: win_x86\n      files:\n        terraform.zip: https://releases.hashicorp.com/terraform/{{ version | strip_prefix \"v\" }}/terraform_{{ version | strip_prefix \"v\" }}_windows_386.zip\n      bin: terraform.exe\n\nbin:\n  terraform: \"{{source.download.bin}}\"\n"
  },
  {
    "path": "packages/terraform-ls/package.yaml",
    "content": "---\nname: terraform-ls\ndescription: Terraform Language Server.\nhomepage: https://github.com/hashicorp/terraform-ls\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Terraform\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=github-releases\n  id: pkg:generic/hashicorp/terraform-ls@v0.38.6\n  download:\n    - target: darwin_arm64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_darwin_arm64.zip\n      bin: terraform-ls\n    - target: darwin_x64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_darwin_amd64.zip\n      bin: terraform-ls\n    - target: linux_arm64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_linux_arm64.zip\n      bin: terraform-ls\n    - target: linux_arm\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_linux_arm.zip\n      bin: terraform-ls\n    - target: linux_x64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_linux_amd64.zip\n      bin: terraform-ls\n    - target: linux_x86\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_linux_386.zip\n      bin: terraform-ls\n    - target: win_x64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_windows_amd64.zip\n      bin: terraform-ls.exe\n    - target: win_x86\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_windows_386.zip\n      bin: terraform-ls.exe\n    - target: win_arm64\n      files:\n        terraform-ls.zip: https://releases.hashicorp.com/terraform-ls/{{ version | strip_prefix \"v\" }}/terraform-ls_{{ version | strip_prefix \"v\" }}_windows_arm64.zip\n      bin: terraform-ls.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/hashicorp/vscode-terraform/master/package.json\n\nbin:\n  terraform-ls: \"{{source.download.bin}}\"\n\nneovim:\n  lspconfig: terraformls\n"
  },
  {
    "path": "packages/tex-fmt/package.yaml",
    "content": "---\nname: tex-fmt\ndescription: An extremely fast LaTeX formatter written in Rust.\nhomepage: https://github.com/WGUNDERWOOD/tex-fmt\nlicenses:\n  - MIT\nlanguages:\n  - LaTeX\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/WGUNDERWOOD/tex-fmt@v0.5.7\n  asset:\n    - target: linux_x64_gnu\n      file: tex-fmt-x86_64-linux.tar.gz\n      bin: tex-fmt\n    - target: darwin_x64\n      file: tex-fmt-x86_64-macos.tar.gz\n      bin: tex-fmt\n    - target: win_x64\n      file: tex-fmt-x86_64-windows.zip\n      bin: tex-fmt.exe\n    - target: linux_arm64_gnu\n      file: tex-fmt-aarch64-linux.tar.gz\n      bin: tex-fmt\n    - target: darwin_arm64\n      file: tex-fmt-aarch64-macos.tar.gz\n      bin: tex-fmt\n    - target: win_arm64\n      file: tex-fmt-aarch64-windows.zip\n      bin: tex-fmt.exe\n\nbin:\n  tex-fmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/texlab/package.yaml",
    "content": "---\nname: texlab\ndescription: An implementation of the Language Server Protocol for LaTeX.\nhomepage: https://github.com/latex-lsp/texlab\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - LaTeX\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/latex-lsp/texlab@v5.25.1\n  asset:\n    - target: darwin_arm64\n      file: texlab-aarch64-macos.tar.gz\n      bin: texlab\n    - target: darwin_x64\n      file: texlab-x86_64-macos.tar.gz\n      bin: texlab\n    - target: linux_x64_gnu\n      file: texlab-x86_64-linux.tar.gz\n      bin: texlab\n    - target: linux_x64_musl\n      file: texlab-x86_64-alpine.tar.gz\n      bin: texlab\n    - target: linux_arm64_gnu\n      file: texlab-aarch64-linux.tar.gz\n      bin: texlab\n    - target: linux_armv7_gnu\n      file: texlab-armv7hf-linux.tar.gz\n      bin: texlab\n    - target: win_arm64\n      file: texlab-aarch64-windows.zip\n      bin: texlab.exe\n    - target: win_x64\n      file: texlab-x86_64-windows.zip\n      bin: texlab.exe\n    - target: win_x86\n      file: texlab-i686-windows.zip\n      bin: texlab.exe\n\nbin:\n  texlab: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: texlab\n"
  },
  {
    "path": "packages/textlint/package.yaml",
    "content": "---\nname: textlint\ndescription: The pluggable natural language linter for text and markdown.\nhomepage: https://textlint.github.io\nlicenses:\n  - MIT\nlanguages:\n  - Text\n  - Markdown\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/textlint@15.5.4\n\nbin:\n  textlint: npm:textlint\n"
  },
  {
    "path": "packages/textlsp/package.yaml",
    "content": "---\nname: textlsp\ndescription: Language server for text spell and grammar check with various tools.\nhomepage: https://github.com/hangyav/textLSP\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Text\n  - LaTeX\n  - Org\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/textLSP@0.4.0\n\nbin:\n  textlsp: pypi:textlsp\n\nneovim:\n  lspconfig: textlsp\n"
  },
  {
    "path": "packages/tflint/package.yaml",
    "content": "---\nname: tflint\ndescription: A Pluggable Terraform Linter.\nhomepage: https://github.com/terraform-linters/tflint\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Terraform\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:github/terraform-linters/tflint@v0.62.0\n  asset:\n    - target: darwin_x64\n      file: tflint_darwin_amd64.zip\n      bin: tflint\n    - target: darwin_arm64\n      file: tflint_darwin_arm64.zip\n      bin: tflint\n    - target: linux_x64\n      file: tflint_linux_amd64.zip\n      bin: tflint\n    - target: linux_arm64\n      file: tflint_linux_arm64.zip\n      bin: tflint\n    - target: linux_x86\n      file: tflint_linux_386.zip\n      bin: tflint\n    - target: win_x64\n      file: tflint_windows_amd64.zip\n      bin: tflint.exe\n\nbin:\n  tflint: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: tflint\n"
  },
  {
    "path": "packages/tfsec/package.yaml",
    "content": "---\nname: tfsec\ndescription: Security scanner for your Terraform code\nhomepage: https://github.com/aquasecurity/tfsec\nlicenses:\n  - MIT\nlanguages:\n  - Terraform\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/aquasecurity/tfsec@v1.28.14\n  asset:\n    - target: darwin_x64\n      file: tfsec-darwin-amd64\n    - target: darwin_arm64\n      file: tfsec-darwin-arm64\n    - target: linux_x64\n      file: tfsec-linux-amd64\n    - target: linux_arm64\n      file: tfsec-linux-arm64\n    - target: win_arm64\n      file: tfsec-windows-arm64.exe\n    - target: win_x64\n      file: tfsec-windows-amd64.exe\n\nbin:\n  tfsec: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/thriftls/package.yaml",
    "content": "---\nname: thriftls\ndescription: |\n  thriftls is a Thrift language server. It provides IDE features\n  to any LSP-compatible editor.\nhomepage: https://github.com/joyme123/thrift-ls\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Thrift\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/joyme123/thrift-ls@v0.2.10\n  asset:\n    - target: darwin_x64\n      file: thriftls-darwin-amd64\n    - target: darwin_arm64\n      file: thriftls-darwin-arm64\n    - target: win_x64\n      file: thriftls-windows-amd64.exe\n    - target: win_x86\n      file: thriftls-windows-386.exe\n    - target: linux_x86\n      file: thriftls-linux-386\n    - target: linux_x64\n      file: thriftls-linux-amd64\n    - target: linux_arm64\n      file: thriftls-linux-arm64\n\n\nbin:\n  thriftls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: thriftls\n"
  },
  {
    "path": "packages/tilt/package.yaml",
    "content": "---\nname: tilt\ndescription: Define your dev environment as code. For microservice apps on Kubernetes.\nhomepage: https://tilt.dev/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Starlark\ncategories:\n  - Runtime\n  - LSP\n\nsource:\n  id: pkg:github/tilt-dev/tilt@v0.37.2\n  asset:\n    - target: darwin_arm64\n      file: tilt.{{ version | strip_prefix \"v\" }}.mac.arm64.tar.gz\n      bin: tilt\n    - target: darwin_x64\n      file: tilt.{{ version | strip_prefix \"v\" }}.mac.x86_64.tar.gz\n      bin: tilt\n    - target: linux_arm\n      file: tilt.{{ version | strip_prefix \"v\" }}.linux.arm.tar.gz\n      bin: tilt\n    - target: linux_arm64\n      file: tilt.{{ version | strip_prefix \"v\" }}.linux.arm64.tar.gz\n      bin: tilt\n    - target: linux_arm64_musl\n      file: tilt.{{ version | strip_prefix \"v\" }}.linux-alpine.arm64.tar.gz\n      bin: tilt\n    - target: linux_x64\n      file: tilt.{{ version | strip_prefix \"v\" }}.linux.x86_64.tar.gz\n      bin: tilt\n    - target: linux_x64_musl\n      file: tilt.{{ version | strip_prefix \"v\" }}.linux-alpine.x86_64.tar.gz\n      bin: tilt\n    - target: win_x64\n      file: tilt.{{ version | strip_prefix \"v\" }}.windows.x86_64.zip\n      bin: tilt.exe\n\nbin:\n  tilt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/tinymist/package.yaml",
    "content": "---\nname: tinymist\ndescription: |\n  Tinymist [ˈtaɪni mɪst] is an integrated language service for Typst [taɪpst]. You can also call it \"微霭\" [wēi ǎi] in\n  Chinese.\nhomepage: https://github.com/Myriad-Dreamin/tinymist\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Typst\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/Myriad-Dreamin/tinymist@v0.14.16\n  asset:\n    - target: linux_x64_gnu\n      file: tinymist-linux-x64\n    - target: linux_x64_musl\n      file: tinymist-alpine-x64\n    - target: linux_arm64_gnu\n      file: tinymist-linux-arm64\n    - target: linux_arm64_musl\n      file: tinymist-alpine-arm64\n    - target: darwin_x64\n      file: tinymist-darwin-x64\n    - target: darwin_arm64\n      file: tinymist-darwin-arm64\n    - target: win_x64\n      file: tinymist-win32-x64.exe\n    - target: win_arm64\n      file: tinymist-win32-arm64.exe\n\nbin:\n  tinymist: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: tinymist\n"
  },
  {
    "path": "packages/tlint/package.yaml",
    "content": "---\nname: tlint\ndescription: Tighten linter for Laravel conventions with support for formatting.\nhomepage: https://github.com/tighten/tlint\nlicenses:\n  - MIT\nlanguages:\n  - PHP\n  - Blade\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:composer/tightenco/tlint@v9.6.0\n\nbin:\n  tlint: composer:tlint\n\nci_skip:\n  # freezes on Windows CI for some reason\n  - win_x64\n"
  },
  {
    "path": "packages/tofu-ls/package.yaml",
    "content": "---\nname: tofu-ls\ndescription: OpenTofu Language Server\nhomepage: https://github.com/opentofu/tofu-ls\nlicenses:\n  - MPL-2.0\nlanguages:\n  - OpenTofu\ncategories:\n  - LSP\nneovim:\n  lspconfig: tofu_ls\n\nsource:\n  id: pkg:github/opentofu/tofu-ls@v0.4.1\n  asset:\n    - target: darwin_arm64\n      file: tofu-ls_Darwin_arm64.tar.gz\n      bin: tofu-ls\n    - target: darwin_x64\n      file: tofu-ls_Darwin_x86_64.tar.gz\n      bin: tofu-ls\n    - target: linux_arm64\n      file: tofu-ls_Linux_arm64.tar.gz\n      bin: tofu-ls\n    - target: linux_x86\n      file: tofu-ls_Linux_i386.tar.gz\n      bin: tofu-ls\n    - target: linux_x64\n      file: tofu-ls_Linux_x86_64.tar.gz\n      bin: tofu-ls\n    - target: win_arm64\n      file: tofu-ls_Windows_arm64.tar.gz\n      bin: tofu-ls.exe\n    - target: win_x86\n      file: tofu-ls_Windows_i386.tar.gz\n      bin: tofu-ls.exe\n    - target: win_x64\n      file: tofu-ls_Windows_x86_64.tar.gz\n      bin: tofu-ls.exe\n\nbin:\n  tofu-ls: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/tombi/package.yaml",
    "content": "---\nname: tombi\ndescription: |\n  TOML Formatter / Linter / Language Server\nhomepage: https://github.com/tombi-toml/tombi\nlicenses:\n  - MIT\nlanguages:\n  - TOML\ncategories:\n  - Formatter\n  - Linter\n  - LSP\n\nneovim:\n  lspconfig: tombi\n\nsource:\n  id: pkg:github/tombi-toml/tombi@v0.9.22\n  asset:\n    - target: darwin_x64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-x86_64-apple-darwin.gz\n      bin: tombi-cli-{{ version | strip_prefix \"v\" }}-x86_64-apple-darwin\n    - target: darwin_arm64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-aarch64-apple-darwin.gz\n      bin: tombi-cli-{{ version | strip_prefix \"v\" }}-aarch64-apple-darwin\n    - target: linux_x64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-x86_64-unknown-linux-musl.gz\n      bin: tombi-cli-{{ version | strip_prefix \"v\" }}-x86_64-unknown-linux-musl\n    - target: linux_arm64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-aarch64-unknown-linux-musl.gz\n      bin: tombi-cli-{{ version | strip_prefix \"v\" }}-aarch64-unknown-linux-musl\n    - target: linux_armv7_gnu\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-arm-unknown-linux-gnueabihf.gz\n      bin: tombi-cli-{{ version | strip_prefix \"v\" }}-arm-unknown-linux-gnueabihf\n    - target: win_x64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-x86_64-pc-windows-msvc.zip\n      bin: tombi.exe\n    - target: win_arm64\n      file: tombi-cli-{{ version | strip_prefix \"v\" }}-aarch64-pc-windows-msvc.zip\n      bin: tombi.exe\n\nbin:\n  tombi: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/tree-sitter-cli/package.yaml",
    "content": "---\nname: tree-sitter-cli\ndescription: |\n  The Tree-sitter CLI allows you to develop, test, and use Tree-sitter grammars from the command line. It works on\n  MacOS, Linux, and Windows.\nhomepage: https://github.com/tree-sitter/tree-sitter/blob/master/crates/cli/README.md\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Compiler\n\nsource:\n  id: pkg:github/tree-sitter/tree-sitter@v0.26.8\n  asset:\n    - target: darwin_x64\n      file: tree-sitter-macos-x64.gz\n      bin: tree-sitter-macos-x64\n    - target: darwin_arm64\n      file: tree-sitter-macos-arm64.gz\n      bin: tree-sitter-macos-arm64\n    - target: linux_x64\n      file: tree-sitter-linux-x64.gz\n      bin: tree-sitter-linux-x64\n    - target: linux_x86\n      file: tree-sitter-linux-x86.gz\n      bin: tree-sitter-linux-x86\n    - target: linux_arm64\n      file: tree-sitter-linux-arm64.gz\n      bin: tree-sitter-linux-arm64\n    - target: win_x64\n      file: tree-sitter-cli-windows-x64.zip\n      bin: tree-sitter.exe\n    - target: win_x86\n      file: tree-sitter-cli-windows-x86.zip\n      bin: tree-sitter.exe\n\nbin:\n  tree-sitter: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/trivy/package.yaml",
    "content": "---\nname: trivy\ndescription: |\n  Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more.\nhomepage: https://github.com/aquasecurity/trivy\nlicenses:\n  - Apache-2.0\nlanguages:\n  - C\n  - C#\n  - C++\n  - Dart\n  - Docker\n  - Elixir\n  - Go\n  - Helm\n  - Java\n  - JavaScript\n  - PHP\n  - Python\n  - Ruby\n  - Rust\n  - Terraform\n  - TypeScript\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/aquasecurity/trivy@v0.70.0\n  asset:\n    - target: darwin_x64\n      file: trivy_{{ version | strip_prefix \"v\" }}_macOS-64bit.tar.gz\n      bin: trivy\n    - target: darwin_arm64\n      file: trivy_{{ version | strip_prefix \"v\" }}_macOS-ARM64.tar.gz\n      bin: trivy\n    - target: linux_x64\n      file: trivy_{{ version | strip_prefix \"v\" }}_Linux-64bit.tar.gz\n      bin: trivy\n    - target: linux_arm64\n      file: trivy_{{ version | strip_prefix \"v\" }}_Linux-ARM64.tar.gz\n      bin: trivy\n    - target: win_x64\n      file: trivy_{{ version | strip_prefix \"v\" }}_Windows-64bit.zip\n      bin: trivy.exe\n\nbin:\n  trivy: \"{{source.asset.bin}}\"\n\nshare:\n  trivy/templates/: contrib/\n"
  },
  {
    "path": "packages/trufflehog/package.yaml",
    "content": "---\nname: trufflehog\ndescription: Find and verify credentials.\nhomepage: https://github.com/trufflesecurity/trufflehog\nlicenses:\n  - AGPL-3.0\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/trufflesecurity/trufflehog@v3.95.2\n  asset:\n    - target: darwin_x64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_darwin_amd64.tar.gz\n      bin: trufflehog\n    - target: darwin_arm64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: trufflehog\n    - target: linux_x64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_linux_amd64.tar.gz\n      bin: trufflehog\n    - target: linux_arm64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: trufflehog\n    - target: win_x64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_windows_amd64.tar.gz\n      bin: trufflehog.exe\n    - target: win_arm64\n      file: trufflehog_{{ version | strip_prefix \"v\" }}_windows_arm64.tar.gz\n      bin: trufflehog.exe\n\nbin:\n  trufflehog: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/ts-standard/package.yaml",
    "content": "---\nname: ts-standard\ndescription: Typescript style guide, linter, and formatter using StandardJS.\nhomepage: https://github.com/standard/ts-standard\nlicenses:\n  - MIT\nlanguages:\n  - TypeScript\ncategories:\n  - Linter\n  - Formatter\n\nsource:\n  id: pkg:npm/ts-standard@12.0.2\n\nbin:\n  ts-standard: npm:ts-standard\n"
  },
  {
    "path": "packages/ts_query_ls/package.yaml",
    "content": "---\nname: ts_query_ls\ndescription: An LSP implementation for Tree-sitter's query files\nhomepage: https://github.com/ribru17/ts_query_ls\nlicenses:\n  - MIT\nlanguages:\n  - Query\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/ribru17/ts_query_ls@v3.16.0\n  asset:\n    - target: darwin_x64\n      file: ts_query_ls-x86_64-apple-darwin.tar.gz\n      bin: ts_query_ls\n    - target: darwin_arm64\n      file: ts_query_ls-aarch64-apple-darwin.tar.gz\n      bin: ts_query_ls\n    - target: linux_x64_gnu\n      file: ts_query_ls-x86_64-unknown-linux-gnu.tar.gz\n      bin: ts_query_ls\n    - target: linux_arm64_gnu\n      file: ts_query_ls-aarch64-unknown-linux-gnu.tar.gz\n      bin: ts_query_ls\n    - target: win_x64\n      file: ts_query_ls-x86_64-pc-windows-msvc.zip\n      bin: ts_query_ls.exe\n\nbin:\n  ts_query_ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: ts_query_ls\n"
  },
  {
    "path": "packages/tsgo/package.yaml",
    "content": "---\nname: tsgo\ndescription: |\n  Native TypeScript compiler port. Language Server Protocol support with partial\n  features including errors, hover, go to definition, references, and signature help.\nhomepage: https://github.com/microsoft/typescript-go\nlicenses:\n  - Apache-2.0\nlanguages:\n  - TypeScript\n  - JavaScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/@typescript/native-preview@7.0.0-dev.20260425.1\n\nbin:\n  tsgo: npm:tsgo\n\nneovim:\n  lspconfig: tsgo\n"
  },
  {
    "path": "packages/tsp-server/package.yaml",
    "content": "---\nname: tsp-server\ndescription: The language server for TypeSpec, a language for defining cloud service APIs and shapes.\nhomepage: https://github.com/microsoft/typespec\nlicenses:\n  - MIT\nlanguages:\n  - Typespec\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40typespec/compiler@1.11.0\n\nbin:\n  tsp-server: npm:tsp-server\n\nneovim:\n  lspconfig: tsp_server\n"
  },
  {
    "path": "packages/turtle-language-server/package.yaml",
    "content": "---\nname: turtle-language-server\ndescription: A language server (by Stardog) for Turtle\nhomepage: https://github.com/stardog-union/stardog-language-servers\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Turtle\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/turtle-language-server@3.5.0\n\nbin:\n  turtle-language-server: npm:turtle-language-server\n"
  },
  {
    "path": "packages/twig-cs-fixer/package.yaml",
    "content": "---\nname: twig-cs-fixer\ndescription: A tool to automatically fix Twig Coding Standards issues\nhomepage: https://github.com/VincentLanglet/Twig-CS-Fixer\nlicenses:\n  - MIT\nlanguages:\n  - Twig\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:composer/vincentlanglet/twig-cs-fixer@3.14.0\n\nbin:\n  twig-cs-fixer: composer:twig-cs-fixer\n"
  },
  {
    "path": "packages/twigcs/package.yaml",
    "content": "---\nname: twigcs\ndescription: |\n  The missing checkstyle for twig! Twigcs aims to be what phpcs is to php. It checks your codebase for violations on\n  coding standards.\nhomepage: https://github.com/friendsoftwig/twigcs\nlicenses:\n  - MIT\nlanguages:\n  - Twig\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/friendsoftwig/twigcs@6.5.0\n  asset:\n    file: twigcs.phar\n\nbin:\n  twigcs: php:twigcs.phar\n"
  },
  {
    "path": "packages/twiggy-language-server/package.yaml",
    "content": "---\nname: twiggy-language-server\ndescription: Twig Language Server.\nhomepage: https://github.com/moetelo/twiggy\nlicenses:\n  - MPL-2.0\nlanguages:\n  - Twig\n  - HTML\ncategories:\n  - LSP\n  - Linter\n\nsource:\n  id: pkg:npm/twiggy-language-server@0.20.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/moetelo/twiggy/v{{version}}/packages/vscode/package.json\n\nbin:\n  twiggy-language-server: node:node_modules/twiggy-language-server/dist/server.js\n\nneovim:\n  lspconfig: twiggy_language_server\n"
  },
  {
    "path": "packages/ty/package.yaml",
    "content": "---\nname: ty\ndescription: An extremely fast Python type checker and language server, written in Rust.\nhomepage: https://github.com/astral-sh/ty\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n  - LSP\n\nsource:\n  id: pkg:pypi/ty@0.0.32\n\nbin:\n  ty: pypi:ty\n\nneovim:\n  lspconfig: ty\n"
  },
  {
    "path": "packages/typescript-language-server/package.yaml",
    "content": "---\nname: typescript-language-server\ndescription: TypeScript & JavaScript Language Server.\nhomepage: https://github.com/typescript-language-server/typescript-language-server\nlicenses:\n  - MIT\nlanguages:\n  - TypeScript\n  - JavaScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/typescript-language-server@5.1.3\n  extra_packages:\n    - typescript\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/microsoft/vscode/main/extensions/typescript-language-features/package.json\n\nbin:\n  typescript-language-server: npm:typescript-language-server\n\nneovim:\n  lspconfig: ts_ls\n"
  },
  {
    "path": "packages/typos/package.yaml",
    "content": "---\nname: typos\ndescription: Source code spell checker\nhomepage: https://github.com/crate-ci/typos\nlicenses:\n  - MIT\n  - Apache-2.0\nlanguages: []\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/crate-ci/typos@v1.45.1\n  asset:\n    - target: darwin_x64\n      file: typos-{{ version }}-x86_64-apple-darwin.tar.gz\n      bin: typos\n    # No arm64 build yet, but does work fine on M1 Mac. See https://github.com/crate-ci/typos/issues/828\n    - target: darwin_arm64\n      file: typos-{{ version }}-x86_64-apple-darwin.tar.gz\n      bin: typos\n    - target: linux_x64\n      file: typos-{{ version }}-x86_64-unknown-linux-musl.tar.gz\n      bin: typos\n    - target: win_x64\n      file: typos-{{ version }}-x86_64-pc-windows-msvc.zip\n      bin: typos.exe\n\nbin:\n  typos: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/typos-lsp/package.yaml",
    "content": "---\nname: typos-lsp\ndescription: Source code spell checker\nhomepage: https://github.com/tekumara/typos-vscode\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/tekumara/typos-vscode@v0.1.52\n  asset:\n    - target: darwin_x64\n      file: typos-lsp-{{ version }}-x86_64-apple-darwin.tar.gz\n      bin: typos-lsp\n    - target: darwin_arm64\n      file: typos-lsp-{{ version }}-aarch64-apple-darwin.tar.gz\n      bin: typos-lsp\n    - target: linux_x64_gnu\n      file: typos-lsp-{{ version }}-x86_64-unknown-linux-gnu.tar.gz\n      bin: typos-lsp\n    - target: linux_x64\n      file: typos-lsp-{{ version }}-x86_64-unknown-linux-musl.tar.gz\n      bin: typos-lsp\n    - target: linux_arm64_gnu\n      file: typos-lsp-{{ version }}-aarch64-unknown-linux-gnu.tar.gz\n      bin: typos-lsp\n    - target: linux_arm_gnu\n      file: typos-lsp-{{ version }}-arm-unknown-linux-gnueabihf.tar.gz\n      bin: typos-lsp\n    - target: linux_arm64\n      file: typos-lsp-{{ version }}-aarch64-unknown-linux-musl.tar.gz\n      bin: typos-lsp\n    - target: win_x64\n      file: typos-lsp-{{ version }}-x86_64-pc-windows-msvc.zip\n      bin: target/x86_64-pc-windows-msvc/release/typos-lsp.exe\n    - target: win_arm64\n      file: typos-lsp-{{ version }}-aarch64-pc-windows-msvc.zip\n      bin: target/aarch64-pc-windows-msvc/release/typos-lsp.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/tekumara/typos-lsp/{{version}}/package.json\n\nbin:\n  typos-lsp: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: typos_lsp\n"
  },
  {
    "path": "packages/typstyle/package.yaml",
    "content": "---\nname: typstyle\ndescription: Beautiful and reliable typst code formatter\nhomepage: https://github.com/Enter-tainer/typstyle\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Typst\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/Enter-tainer/typstyle@v0.14.4\n  asset:\n    - target: darwin_arm64\n      file: typstyle-aarch64-apple-darwin\n    - target: darwin_x64\n      file: typstyle-x86_64-apple-darwin\n    - target: linux_arm64\n      file: typstyle-aarch64-unknown-linux-gnu\n    - target: linux_x64\n      file: typstyle-x86_64-unknown-linux-gnu\n    - target: win_x64\n      file: typstyle-aarch64-pc-windows-msvc.exe\n\nbin:\n  typstyle: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/unocss-language-server/package.yaml",
    "content": "---\nname: unocss-language-server\ndescription: Language Server Protocol implementation for UnoCSS.\nhomepage: https://github.com/xna00/unocss-language-server\nlicenses:\n  - MIT\nlanguages:\n  - CSS\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/unocss-language-server@0.1.8\n\nbin:\n  unocss-language-server: npm:unocss-language-server\n\nneovim:\n  lspconfig: unocss\n"
  },
  {
    "path": "packages/usort/package.yaml",
    "content": "---\nname: usort\ndescription: Safe, minimal import sorting for Python projects.\nhomepage: https://usort.readthedocs.io/\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/usort@1.1.3\n\nbin:\n  usort: pypi:usort\n"
  },
  {
    "path": "packages/uv/package.yaml",
    "content": "---\nname: uv\ndescription: |\n  An extremely fast Python package and project manager, written in Rust\nhomepage: https://docs.astral.sh/uv/\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Python\ncategories: []\n\nsource:\n  id: pkg:github/astral-sh/uv@0.11.7\n  asset:\n    - target: darwin_x64\n      file: uv-x86_64-apple-darwin.tar.gz\n      uv: uv-x86_64-apple-darwin/uv\n      uvx: uv-x86_64-apple-darwin/uvx\n    - target: darwin_arm64\n      file: uv-aarch64-apple-darwin.tar.gz\n      uv: uv-aarch64-apple-darwin/uv\n      uvx: uv-aarch64-apple-darwin/uvx\n    - target: linux_x64\n      file: uv-x86_64-unknown-linux-gnu.tar.gz\n      uv: uv-x86_64-unknown-linux-gnu/uv\n      uvx: uv-x86_64-unknown-linux-gnu/uvx\n    - target: linux_x86\n      file: uv-i686-unknown-linux-gnu.tar.gz\n      uv: uv-i686-unknown-linux-gnu/uv\n      uvx: uv-i686-unknown-linux-gnu/uvx\n    - target: linux_arm64\n      file: uv-aarch64-unknown-linux-gnu.tar.gz\n      uv: uv-aarch64-unknown-linux-gnu/uv\n      uvx: uv-aarch64-unknown-linux-gnu/uvx\n    - target: linux_arm\n      file: uv-armv7-unknown-linux-gnueabihf.tar.gz\n      uv: uv-armv7-unknown-linux-gnueabihf/uv\n      uvx: uv-armv7-unknown-linux-gnueabihf/uvx\n    - target: win_x64\n      file: uv-x86_64-pc-windows-msvc.zip\n      uv: uv.exe\n      uvw: uvw.exe\n      uvx: uvx.exe\n    - target: win_x86\n      file: uv-i686-pc-windows-msvc.zip\n      uv: uv.exe\n      uvw: uvw.exe\n      uvx: uvx.exe\n    - target: win_arm64\n      file: uv-aarch64-pc-windows-msvc.zip\n      uv: uv.exe\n      uvw: uvw.exe\n      uvx: uvx.exe\n\nbin:\n  uv: \"{{source.asset.uv}}\"\n  uvw: \"{{source.asset.uvw}}\"\n  uvx: \"{{source.asset.uvx}}\"\n"
  },
  {
    "path": "packages/v-analyzer/package.yaml",
    "content": "---\nname: v-analyzer\ndescription: The @vlang language server, for all your editing needs like go-to-definition, code completion, type hints, and more.\nhomepage: https://github.com/vlang/v-analyzer\nlicenses:\n  - MIT\nlanguages:\n  - V\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/vlang/v-analyzer@0.0.6\n  asset:\n    - target: darwin_arm64\n      file: v-analyzer-darwin-arm64.zip\n      bin: v-analyzer\n    - target: darwin_x64\n      file: v-analyzer-darwin-x86_64.zip\n      bin: v-analyzer\n    - target: linux_x64_gnu\n      file: v-analyzer-linux-x86_64.zip\n      bin: v-analyzer\n    - target: win_x64\n      file: v-analyzer-windows-x86_64.zip\n      bin: v-analyzer.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/vlang/v-analyzer/{{version}}/editors/code/package.json\n\nbin:\n  v-analyzer: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: v_analyzer\n"
  },
  {
    "path": "packages/vacuum/package.yaml",
    "content": "---\nname: vacuum\ndescription: |\n  vacuum is the worlds fastest OpenAPI 3, OpenAPI 2 / Swagger linter and quality analysis tool. Built in go, it tears\n  through API specs faster than you can think. vacuum is compatible with Spectral rulesets and generates compatible\n  reports.\nhomepage: https://github.com/daveshanley/vacuum\nlicenses:\n  - MIT\nlanguages:\n  - OpenAPI\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/daveshanley/vacuum@v0.26.1\n  asset:\n    - target: darwin_arm64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_darwin_arm64.tar.gz\n      bin: vacuum\n    - target: darwin_x64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_darwin_x86_64.tar.gz\n      bin: vacuum\n    - target: linux_arm64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_linux_arm64.tar.gz\n      bin: vacuum\n    - target: linux_x64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_linux_x86_64.tar.gz\n      bin: vacuum\n    - target: linux_x86\n      file: vacuum_{{ version | strip_prefix \"v\" }}_linux_i386.tar.gz\n      bin: vacuum\n    - target: win_arm64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_windows_arm64.tar.gz\n      bin: vacuum.exe\n    - target: win_x64\n      file: vacuum_{{ version | strip_prefix \"v\" }}_windows_x86_64.tar.gz\n      bin: vacuum.exe\n    - target: win_x86\n      file: vacuum_{{ version | strip_prefix \"v\" }}_windows_i386.tar.gz\n      bin: vacuum.exe\n\nbin:\n  vacuum: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: vacuum\n"
  },
  {
    "path": "packages/vala-language-server/package.yaml",
    "content": "---\nname: vala-language-server\ndescription: Code Intelligence for Vala & Genie.\nhomepage: https://github.com/vala-lang/vala-language-server\nlicenses:\n  - LGPL-2.1-or-later\nlanguages:\n  - Vala\ncategories:\n  - LSP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/vala-lang/vala-language-server@c66ce433375815fb65d3aefddf68122817c0073d\n  build:\n    - target: unix\n      run: |\n        meson -Dprefix=\"$PWD\" build\n        ninja -C build install\n      bin: bin/vala-language-server\n    - target: win\n      run: |\n        meson -Dprefix=\"($pwd).path\" build\n        ninja -C build install\n      bin: bin/vala-language-server.exe\n\nbin:\n  vala-language-server: \"{{source.build.bin}}\"\n\nci_skip: true\n\nneovim:\n  lspconfig: vala_ls\n"
  },
  {
    "path": "packages/vale/package.yaml",
    "content": "---\nname: vale\ndescription: A syntax-aware linter for prose built with speed and extensibility in mind.\nhomepage: https://vale.sh/\nlicenses:\n  - MIT\nlanguages:\n  - Text\n  - Markdown\n  - LaTeX\ncategories:\n  - Linter\n\nsource:\n  id: pkg:github/errata-ai/vale@v3.14.1\n  asset:\n    - target: darwin_x64\n      file: vale_{{ version | strip_prefix \"v\" }}_macOS_64-bit.tar.gz\n      bin: vale\n    - target: darwin_arm64\n      file: vale_{{ version | strip_prefix \"v\" }}_macOS_arm64.tar.gz\n      bin: vale\n    - target: linux_x64\n      file: vale_{{ version | strip_prefix \"v\" }}_Linux_64-bit.tar.gz\n      bin: vale\n    - target: linux_arm64\n      file: vale_{{ version | strip_prefix \"v\" }}_Linux_arm64.tar.gz\n      bin: vale\n    - target: win_x64\n      file: vale_{{ version | strip_prefix \"v\" }}_Windows_64-bit.zip\n      bin: vale.exe\n\nbin:\n  vale: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/vale-ls/package.yaml",
    "content": "---\nname: vale-ls\ndescription: An implementation of the Language Server Protocol (LSP) for the Vale command-line tool.\nhomepage: https://vale.sh/\nlicenses:\n  - MIT\nlanguages:\n  - Text\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/errata-ai/vale-ls@v0.4.0\n  asset:\n    - target: darwin_x64\n      file: vale-ls-x86_64-apple-darwin.zip\n      bin: vale-ls\n    - target: darwin_arm64\n      file: vale-ls-aarch64-apple-darwin.zip\n      bin: vale-ls\n    - target: linux_x64_gnu\n      file: vale-ls-x86_64-unknown-linux-gnu.zip\n      bin: vale-ls\n    - target: linux_arm64_gnu\n      file: vale-ls-aarch64-unknown-linux-gnu.zip\n      bin: vale-ls\n    - target: win_x64\n      file: vale-ls-x86_64-pc-windows-gnu.zip\n      bin: vale-ls.exe\n\nbin:\n  vale-ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: vale_ls\n"
  },
  {
    "path": "packages/vectorcode/package.yaml",
    "content": "---\nname: vectorcode\ndescription: A code repository indexing tool to supercharge your LLM experience.\nhomepage: https://github.com/Davidyz/VectorCode\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/VectorCode@0.7.20?extra=lsp,mcp\n\nbin:\n  vectorcode: pypi:vectorcode\n  vectorcode-server: pypi:vectorcode-server\n  vectorcode-mcp-server: pypi:vectorcode-mcp-server\n\nneovim:\n  lspconfig: vectorcode_server\n"
  },
  {
    "path": "packages/verible/package.yaml",
    "content": "---\nname: verible\ndescription: Verible is a suite of SystemVerilog developer tools, including a parser, style-linter, and formatter.\nhomepage: https://chipsalliance.github.io/verible/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - SystemVerilog\ncategories:\n  - LSP\n  - Linter\n  - Formatter\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/chipsalliance/verible@v0.0-4053-g89d4d98a\n  asset:\n    - target: linux_x64\n      file: verible-{{version}}-linux-static-x86_64.tar.gz\n      bin:\n        diff: verible-{{version}}/bin/verible-verilog-diff\n        format: verible-{{version}}/bin/verible-verilog-format\n        kythe_extractor: verible-{{version}}/bin/verible-verilog-kythe-extractor\n        lint: verible-{{version}}/bin/verible-verilog-lint\n        ls: verible-{{version}}/bin/verible-verilog-ls\n        obfuscate: verible-{{version}}/bin/verible-verilog-obfuscate\n        preprocessor: verible-{{version}}/bin/verible-verilog-preprocessor\n        project: verible-{{version}}/bin/verible-verilog-project\n        syntax: verible-{{version}}/bin/verible-verilog-syntax\n\n    - target: linux_arm64\n      file: verible-{{version}}-linux-static-arm64.tar.gz\n      bin:\n        diff: verible-{{version}}/bin/verible-verilog-diff\n        format: verible-{{version}}/bin/verible-verilog-format\n        kythe_extractor: verible-{{version}}/bin/verible-verilog-kythe-extractor\n        lint: verible-{{version}}/bin/verible-verilog-lint\n        ls: verible-{{version}}/bin/verible-verilog-ls\n        obfuscate: verible-{{version}}/bin/verible-verilog-obfuscate\n        preprocessor: verible-{{version}}/bin/verible-verilog-preprocessor\n        project: verible-{{version}}/bin/verible-verilog-project\n        syntax: verible-{{version}}/bin/verible-verilog-syntax\n\n    - target: win_x64\n      file: verible-{{version}}-win64.zip\n      bin:\n        diff: verible-{{version}}-win64/verible-verilog-diff.exe\n        format: verible-{{version}}-win64/verible-verilog-format.exe\n        kythe_extractor: verible-{{version}}-win64/verible-verilog-kythe-extractor.exe\n        lint: verible-{{version}}-win64/verible-verilog-lint.exe\n        ls: verible-{{version}}-win64/verible-verilog-ls.exe\n        obfuscate: verible-{{version}}-win64/verible-verilog-obfuscate.exe\n        preprocessor: verible-{{version}}-win64/verible-verilog-preprocessor.exe\n        project: verible-{{version}}-win64/verible-verilog-project.exe\n        syntax: verible-{{version}}-win64/verible-verilog-syntax.exe\n\n    - target: [darwin_x64, darwin_arm64]\n      file: verible-{{version}}-macOS.tar.gz\n      bin:\n        diff: verible-{{version}}-macOS/bin/verible-verilog-diff\n        format: verible-{{version}}-macOS/bin/verible-verilog-format\n        kythe_extractor: verible-{{version}}-macOS/bin/verible-verilog-kythe-extractor\n        lint: verible-{{version}}-macOS/bin/verible-verilog-lint\n        ls: verible-{{version}}-macOS/bin/verible-verilog-ls\n        obfuscate: verible-{{version}}-macOS/bin/verible-verilog-obfuscate\n        preprocessor: verible-{{version}}-macOS/bin/verible-verilog-preprocessor\n        project: verible-{{version}}-macOS/bin/verible-verilog-project\n        syntax: verible-{{version}}-macOS/bin/verible-verilog-syntax\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/chipsalliance/verible/{{version}}/verible/verilog/tools/ls/vscode/package.json\n\nbin:\n  verible-verilog-diff: \"{{source.asset.bin.diff}}\"\n  verible-verilog-format: \"{{source.asset.bin.format}}\"\n  verible-verilog-kythe-extractor: \"{{source.asset.bin.kythe_extractor}}\"\n  verible-verilog-lint: \"{{source.asset.bin.lint}}\"\n  verible-verilog-ls: \"{{source.asset.bin.ls}}\"\n  verible-verilog-obfuscate: \"{{source.asset.bin.obfuscate}}\"\n  verible-verilog-preprocessor: \"{{source.asset.bin.preprocessor}}\"\n  verible-verilog-project: \"{{source.asset.bin.project}}\"\n  verible-verilog-syntax: \"{{source.asset.bin.syntax}}\"\n\nneovim:\n  lspconfig: verible\n"
  },
  {
    "path": "packages/veryl-ls/package.yaml",
    "content": "---\nname: veryl-ls\ndescription: Veryl language server.\nhomepage: https://github.com/veryl-lang/veryl\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - Veryl\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/veryl-lang/veryl@v0.19.1\n  asset:\n    - target: darwin_arm64\n      file: veryl-aarch64-mac.zip\n      bin: veryl-ls\n    - target: darwin_x64\n      file: veryl-x86_64-mac.zip\n      bin: veryl-ls\n    - target: linux_x64\n      file: veryl-x86_64-linux.zip\n      bin: veryl-ls\n    - target: win_x64\n      file: veryl-x86_64-windows.zip\n      bin: veryl-ls.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/veryl-lang/veryl/{{version}}/support/vscode/package.json\n\nbin:\n  veryl-ls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: veryl_ls\n"
  },
  {
    "path": "packages/vetur-vls/package.yaml",
    "content": "---\nname: vetur-vls\ndescription: VLS (Vue Language Server) is a language server implementation compatible with Language Server Protocol.\nhomepage: https://github.com/vuejs/vetur\nlicenses:\n  - MIT\nlanguages:\n  - Vue\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vls@0.8.5\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/vuejs/vetur/master/package.json\n\nbin:\n  vls: npm:vls\n\nneovim:\n  lspconfig: vuels\n"
  },
  {
    "path": "packages/vhdl-style-guide/package.yaml",
    "content": "---\nname: vhdl-style-guide\ndescription: Style guide enforcement for VHDL\nhomepage: https://github.com/jeremiah-c-leary/vhdl-style-guide\nlicenses:\n  - GPL-3.0\nlanguages:\n  - VHDL\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/vsg@3.35.0\n\nbin:\n  vsg: pypi:vsg\n"
  },
  {
    "path": "packages/vim-language-server/package.yaml",
    "content": "---\nname: vim-language-server\ndescription: VimScript language server.\nhomepage: https://github.com/iamcco/vim-language-server\nlicenses:\n  - MIT\nlanguages:\n  - VimScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vim-language-server@2.3.1\n\nbin:\n  vim-language-server: npm:vim-language-server\n\nneovim:\n  lspconfig: vimls\n"
  },
  {
    "path": "packages/vint/package.yaml",
    "content": "---\nname: vint\ndescription: Fast and Highly Extensible Vim script Language Lint implemented in Python.\nhomepage: https://github.com/Vimjas/vint\nlicenses:\n  - MIT\nlanguages:\n  - VimScript\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/vim-vint@0.3.21\n\nbin:\n  vint: pypi:vint\n"
  },
  {
    "path": "packages/visualforce-language-server/package.yaml",
    "content": "---\nname: visualforce-language-server\ndescription: Visualforce language server.\nhomepage: https://github.com/forcedotcom/salesforcedx-vscode\nlicenses:\n  - BSD-3-Clause\nlanguages:\n  - Visualforce\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/forcedotcom/salesforcedx-vscode@v66.8.0\n  asset:\n    file: salesforcedx-vscode-visualforce-{{ version | strip_prefix \"v\" }}.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/forcedotcom/salesforcedx-vscode/{{version}}/packages/salesforcedx-vscode-visualforce/package.json\n\nbin:\n  visualforce-language-server: node:extension/dist/visualforceServer.js\n\nneovim:\n  lspconfig: visualforce_ls\n"
  },
  {
    "path": "packages/vls/package.yaml",
    "content": "---\nname: vls\ndescription: V language server.\nhomepage: https://github.com/vlang/vls\nlicenses:\n  - MIT\nlanguages:\n  - V\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/vlang/vls@latest\n  asset:\n    - target: [darwin_x64, darwin_arm64]\n      file: vls_macos_x64\n    - target: linux_x64\n      file: vls_linux_x64\n    - target: win_x64\n      file: vls_windows_x64.exe\n\nbin:\n  vls: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: vls\n"
  },
  {
    "path": "packages/vscode-home-assistant/package.yaml",
    "content": "---\nname: vscode-home-assistant\ndescription: Language Server Protocol implementation for Home Assistant.\nhomepage: https://github.com/keesschollaart81/vscode-home-assistant\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:openvsx/keesschollaart/vscode-home-assistant@2.2.0\n  download:\n    file: keesschollaart.vscode-home-assistant-{{version}}.vsix\n\nbin:\n  vscode-home-assistant: node:extension/out/server/server.js\n\nneovim:\n  lspconfig: home_assistant\n"
  },
  {
    "path": "packages/vscode-java-decompiler/package.yaml",
    "content": "---\nname: vscode-java-decompiler\ndescription: |\n  Decompiler jars from the Decompiler extension for Java in Visual Studio Code.\n  The Java source code is available in the https://github.com/dgileadi/dg.jdt.ls.decompiler repo.\nhomepage: https://github.com/dgileadi/vscode-java-decompiler\nlicenses:\n  - EPL-2.0\nlanguages:\n  - Java\ncategories:\n  - DAP\n\nsource:\n  # renovate:datasource=git-refs\n  id: pkg:github/dgileadi/vscode-java-decompiler@57691a5fdacbc67a8b606e34fb636fa89687430b\n  build:\n    # This repository has the jars pre-built and committed, but there is no repository releases.\n    # Adding this here because it is required by the schema.\n    run: \"\"\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/dgileadi/vscode-java-decompiler/{{version}}/package.json\n\nshare:\n  vscode-java-decompiler/bundles/: \"server/\"\n"
  },
  {
    "path": "packages/vscode-java-dependency/package.yaml",
    "content": "---\nname: vscode-java-dependency\ndescription: Visual Studio Code extension for managing Java projects, dependencies, and exporting JAR files\nhomepage: https://github.com/Microsoft/vscode-java-dependency\nlicenses:\n  - MIT\nlanguages:\n  - Java\ncategories:\n  - Runtime\n\nsource:\n  id: pkg:openvsx/vscjava/vscode-java-dependency@0.24.1\n  download:\n    file: vscjava.vscode-java-dependency-{{version}}.vsix\n\nshare:\n  vscode-java-dependency/: extension/server/\n"
  },
  {
    "path": "packages/vscode-solidity-server/package.yaml",
    "content": "---\nname: vscode-solidity-server\ndescription: Solidity language server.\nhomepage: https://github.com/juanfranblanco/vscode-solidity\nlicenses:\n  - MIT\nlanguages:\n  - Solidity\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/vscode-solidity-server@0.0.187\n\nbin:\n  vscode-solidity-server: npm:vscode-solidity-server\n\nneovim:\n  lspconfig: solidity_ls\n"
  },
  {
    "path": "packages/vscode-spring-boot-tools/package.yaml",
    "content": "---\nname: vscode-spring-boot-tools\ndescription: |\n  VS Code Language Server for Spring Boot\n  VSCode extension and Language Server providing support for working with Spring Boot application.properties, application.yml and .java files.\n\n  Note: this extension has a dependency on VS Code extension of Language Support for Java™ by Red Hat.\nhomepage: https://github.com/spring-projects/spring-tools\nlicenses:\n  - EPL-1.0\nlanguages:\n  - Java\ncategories:\n  - LSP\n\nsource:\n  id: pkg:openvsx/VMware/vscode-spring-boot@1.63.0\n  download:\n    file: VMware.vscode-spring-boot-{{version}}.vsix\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/spring-projects/spring-tools/vscode-spring-boot-{{version}}-RC1/vscode-extensions/vscode-spring-boot/package.json\n\nshare:\n  vscode-spring-boot-tools/jdtls/: extension/jars/\n  vscode-spring-boot-tools/language-server.jar: extension/language-server/spring-boot-language-server-{{version}}-SNAPSHOT-exec.jar\n"
  },
  {
    "path": "packages/vsg/package.yaml",
    "content": "---\nname: vsg\ndescription: VHDL Style Guide (VSG), Coding style enforcement for VHDL.\nhomepage: https://pypi.org/project/vsg/\nlicenses:\n  - GPL-3.0\nlanguages:\n  - VHDL\ncategories:\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:pypi/vsg@3.35.0\n\nbin:\n  vsg: pypi:vsg\n"
  },
  {
    "path": "packages/vtsls/package.yaml",
    "content": "---\nname: vtsls\ndescription: LSP wrapper around the TypeScript extension bundled with VSCode.\nhomepage: https://github.com/yioneko/vtsls\nlicenses:\n  - MIT\nlanguages:\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40vtsls/language-server@0.3.0\n\nschemas:\n  lsp: https://raw.githubusercontent.com/yioneko/vtsls/server-v{{version}}/packages/service/configuration.schema.json\n\nbin:\n  vtsls: npm:vtsls\n\nneovim:\n  lspconfig: vtsls\n"
  },
  {
    "path": "packages/vue-language-server/package.yaml",
    "content": "---\nname: vue-language-server\ndescription: ⚡ Explore high-performance tooling for Vue.\nhomepage: https://github.com/vuejs/language-tools\nlicenses:\n  - MIT\nlanguages:\n  - Vue\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/%40vue/language-server@3.2.7\n  extra_packages:\n    - typescript\n    - \"@vue/typescript-plugin\"\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/vuejs/language-tools/v{{version}}/extensions/vscode/package.json\n\nbin:\n  vue-language-server: npm:vue-language-server\n\nneovim:\n  lspconfig: vue_ls\n"
  },
  {
    "path": "packages/vulture/package.yaml",
    "content": "---\nname: vulture\ndescription: |\n  Vulture finds unused code in Python programs. This is useful for cleaning up and finding errors in large code bases.\n  If you run Vulture on both your library and test suite you can find untested code.\n\n  Due to Python's dynamic nature, static code analyzers like Vulture are likely to miss some dead code. Also, code that\n  is only called implicitly may be reported as unused. Nonetheless, Vulture can be a very helpful tool for higher code\n  quality.\nhomepage: https://github.com/jendrikseipp/vulture\nlicenses:\n  - MIT\nlanguages:\n  - Python\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/vulture@2.16\n\nbin:\n  vulture: pypi:vulture\n"
  },
  {
    "path": "packages/wasm-language-tools/package.yaml",
    "content": "---\nname: wasm-language-tools\ndescription: Language server and other tools for WebAssembly.\nhomepage: https://github.com/g-plane/wasm-language-tools\nlicenses:\n  - MIT\nlanguages:\n  - WebAssembly\ncategories:\n  - LSP\n  - Formatter\n  - Linter\n\nsource:\n  id: pkg:github/g-plane/wasm-language-tools@v0.10.4\n  asset:\n    - target: darwin_arm64\n      file: wat_server-arm64-macos.zip\n      bin: wat_server\n    - target: darwin_x64\n      file: wat_server-x86_64-macos.zip\n      bin: wat_server\n    - target: linux_x64_gnu\n      file: wat_server-x86_64-linux.zip\n      bin: wat_server\n    - target: linux_x64\n      file: wat_server-x86_64-alpine.zip\n      bin: wat_server\n    - target: linux_arm64_gnu\n      file: wat_server-arm64-linux.zip\n      bin: wat_server\n    - target: linux_arm64\n      file: wat_server-arm64-alpine.zip\n      bin: wat_server\n    - target: win_x64\n      file: wat_server-x86_64-windows.zip\n      bin: wat_server.exe\n\nbin:\n  wat_server: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: wasm_language_tools\n"
  },
  {
    "path": "packages/wc-language-server/package.yaml",
    "content": "---\nname: wc-language-server\ndescription: |\n  Language server that surfaces Web Components metadata, completions, and diagnostics.\n  Provides rich language features for HTML, JSX/TSX, Vue, Svelte, Astro, and other\n  templating languages that use Custom Elements.\nhomepage: https://github.com/wc-toolkit/wc-language-server\nlicenses:\n  - MIT\nlanguages:\n  - HTML\n  - JavaScript\n  - TypeScript\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/wc-toolkit/wc-language-server@%40wc-toolkit%2Flanguage-server%400.0.6\n  asset:\n    - target: linux_x64\n      file: wc-language-server-linux-x64\n    - target: linux_arm64\n      file: wc-language-server-linux-arm64\n    - target: darwin_x64\n      file: wc-language-server-macos-x64\n    - target: darwin_arm64\n      file: wc-language-server-macos-arm64\n    - target: win_x64\n      file: wc-language-server-windows-x64.exe\n\nbin:\n  wc-language-server: \"{{source.asset.file}}\"\n\nneovim:\n  lspconfig: wc_ls\n"
  },
  {
    "path": "packages/wgsl-analyzer/package.yaml",
    "content": "---\nname: wgsl-analyzer\ndescription: A language server implementation for the WGSL shading language.\nhomepage: https://github.com/wgsl-analyzer/wgsl-analyzer\nlicenses:\n  - Apache-2.0\n  - MIT\nlanguages:\n  - WGSL\ncategories:\n  - LSP\n\nsource:\n  # renovate:versioning=loose\n  id: pkg:github/wgsl-analyzer/wgsl-analyzer@2026-03-13\n  asset:\n    - target: linux_x64_gnu\n      file: wgsl-analyzer-x86_64-unknown-linux-gnu.gz\n      bin: wgsl-analyzer-x86_64-unknown-linux-gnu\n    - target: linux_arm64_gnu\n      file: wgsl-analyzer-aarch64-unknown-linux-gnu.gz\n      bin: wgsl-analyzer-aarch64-unknown-linux-gnu\n    - target: linux_x64_musl\n      file: wgsl-analyzer-x86_64-unknown-linux-musl.gz\n      bin: wgsl-analyzer-x86_64-unknown-linux-musl\n    - target: darwin_arm64\n      file: wgsl-analyzer-aarch64-apple-darwin.gz\n      bin: wgsl-analyzer-aarch64-apple-darwin\n    - target: win_x64\n      file: wgsl-analyzer-x86_64-pc-windows-msvc.zip\n      bin: wgsl-analyzer.exe\n    - target: win_arm64\n      file: wgsl-analyzer-aarch64-pc-windows-msvc.zip\n      bin: wgsl-analyzer.exe\n\n  version_overrides:\n    - constraint: semver:<=v0.9.11\n      id: pkg:github/wgsl-analyzer/wgsl-analyzer@v0.9.11\n      asset:\n        - target: [darwin_arm64, darwin_x64]\n          file: wgsl-analyzer-darwin-x64\n          bin: wgsl-analyzer-darwin-x64\n        - target: linux_x64\n          file: wgsl-analyzer-linux-x64\n          bin: wgsl-analyzer-linux-x64\n        - target: win_x64\n          file: wgsl-analyzer-win32-x64.exe\n          bin: wgsl-analyzer-win32-x64.exe\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/wgsl-analyzer/wgsl-analyzer/{{version}}/editors/code/package.json\n\nbin:\n  wgsl-analyzer: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: wgsl_analyzer\n"
  },
  {
    "path": "packages/wing/package.yaml",
    "content": "---\nname: wing\ndescription: A programming language for the cloud\nhomepage: https://github.com/winglang/wing\nlicenses:\n  - MIT\nlanguages:\n  - Wing\ncategories:\n  - Compiler\n  - DAP\n  - LSP\n  - Runtime\n\nsource:\n  id: pkg:npm/winglang@0.85.49\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/winglang/wing/main/packages/vscode-wing/package.json\n\nbin:\n  wing: npm:wing\n"
  },
  {
    "path": "packages/woke/package.yaml",
    "content": "---\nname: woke\ndescription: Detect non-inclusive language in your source code.\nhomepage: https://docs.getwoke.tech/\nlicenses:\n  - MIT\nlanguages: []\ncategories:\n  - Linter\nsource:\n  id: pkg:github/get-woke/woke@v0.19.0\n  asset:\n    - target: darwin_arm64\n      file: woke-{{ version | strip_prefix \"v\" }}-darwin-arm64.tar.gz\n      bin: woke-{{ version | strip_prefix \"v\" }}-darwin-arm64/woke\n    - target: darwin_x64\n      file: woke-{{ version | strip_prefix \"v\" }}-darwin-amd64.tar.gz\n      bin: woke-{{ version | strip_prefix \"v\" }}-darwin-amd64/woke\n    - target: linux_arm64\n      file: woke-{{ version | strip_prefix \"v\" }}-linux-arm64.tar.gz\n      bin: woke-{{ version | strip_prefix \"v\" }}-linux-arm64/woke\n    - target: linux_x64\n      file: woke-{{ version | strip_prefix \"v\" }}-linux-amd64.tar.gz\n      bin: woke-{{ version | strip_prefix \"v\" }}-linux-amd64/woke\n    - target: linux_x86\n      file: woke-{{ version | strip_prefix \"v\" }}-linux-386.tar.gz\n      bin: woke-{{ version | strip_prefix \"v\" }}-linux-386/woke\n    - target: win_arm64\n      file: woke-{{ version | strip_prefix \"v\" }}-windows-arm64.zip\n      bin: woke-{{ version | strip_prefix \"v\" }}-windows-arm64/woke.exe\n    - target: win_x64\n      file: woke-{{ version | strip_prefix \"v\" }}-windows-amd64.zip\n      bin: woke-{{ version | strip_prefix \"v\" }}-windows-amd64/woke.exe\n    - target: win_x86\n      file: woke-{{ version | strip_prefix \"v\" }}-windows-386.zip\n      bin: woke-{{ version | strip_prefix \"v\" }}-windows-386/woke.exe\n\nbin:\n  woke: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/write-good/package.yaml",
    "content": "---\nname: write-good\ndescription: |\n  Naive linter for English prose for developers who can't write good and wanna learn to do other stuff good too.\nhomepage: https://github.com/btford/write-good\nlicenses:\n  - MIT\nlanguages:\n  - Markdown\ncategories:\n  - Linter\n\nsource:\n  id: pkg:npm/write-good@1.0.8\n\nbin:\n  write-good: npm:write-good\n"
  },
  {
    "path": "packages/xcbeautify/package.yaml",
    "content": "---\nname: xcbeautify\ndescription: A little beautifier tool for xcodebuild\nhomepage: https://github.com/cpisciotta/xcbeautify\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - Runtime\n\nsource:\n  id: pkg:github/cpisciotta/xcbeautify@3.2.1\n  asset:\n    - target: darwin_arm64\n      file: xcbeautify-{{version}}-arm64-apple-macosx.zip\n      bin: xcbeautify\n    - target: darwin_x64\n      file: xcbeautify-{{version}}-x86_64-apple-macosx.zip\n      bin: xcbeautify\n    - target: linux_x64\n      file: xcbeautify-{{version}}-x86_64-unknown-linux-gnu.tar.xz\n      bin: xcbeautify\n    - target: linux_x64_gnu\n      file: xcbeautify-{{version}}-x86_64-unknown-linux-gnu.tar.xz\n      bin: xcbeautify\n\nbin:\n  xcbeautify: \"{{ source.asset.bin }}\"\n"
  },
  {
    "path": "packages/xcode-build-server/package.yaml",
    "content": "---\nname: xcode-build-server\ndescription: a build server protocol implementation for integrate xcode with sourcekit-lsp\nhomepage: https://github.com/SolaWing/xcode-build-server\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - LSP\nsource:\n  id: pkg:github/SolaWing/xcode-build-server@v1.3.0\n  build:\n    target: darwin_arm64\n    run: |\n    bin: xcode-build-server\nbin:\n  xcode-build-server: \"{{source.build.bin}}\"\n"
  },
  {
    "path": "packages/xcodegen/package.yaml",
    "content": "---\nname: xcodegen\ndescription: A Swift command line tool for generating your Xcode project\nhomepage: https://github.com/yonaskolb/XcodeGen\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - Runtime\n\nsource:\n  id: pkg:github/yonaskolb/XcodeGen@2.45.4\n  asset:\n    - target: darwin_arm64\n      file: xcodegen.artifactbundle.zip\n      bin: xcodegen.artifactbundle/xcodegen-{{version}}-macosx/bin/xcodegen\n\n    - target: linux_x64_gnu\n      file: xcodegen.zip\n      bin: xcodegen/bin/xcodegen\n\n    - target: linux_arm64_gnu\n      file: xcodegen.zip\n      bin: xcodegen/bin/xcodegen\n\nbin:\n  xcodegen: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/xcodeprojectcli/package.yaml",
    "content": "---\nname: xcodeprojectcli\ndescription: A lightweight command-line tool for managing Xcode projects, built entirely in Swift. Also available as a Swift Package.\nhomepage: https://github.com/wojciech-kulik/XcodeProjectCLI\nlicenses:\n  - MIT\nlanguages:\n  - Swift\ncategories:\n  - Runtime\nsource:\n  id: pkg:github/wojciech-kulik/XcodeProjectCLI@v1.2.1\n  supported_platforms:\n    - darwin\n  build:\n    target: darwin_arm64\n    run: |\n      swift build -c release\n    bin: .build/release/xcp\nbin:\n  xcp: \"{{source.build.bin}}\"\n"
  },
  {
    "path": "packages/xmlformatter/package.yaml",
    "content": "---\nname: xmlformatter\ndescription: |\n  xmlformatter is an Open Source Python package that provides formatting of XML documents. xmlformatter differs from\n  others formatters by handling whitespaces by a distinct set of formatting rules - formatting element content by an\n  object style and mixed content by a text style. You may find xmlformatter useful for corrections and presentations.\nhomepage: https://github.com/pamoller/xmlformatter\nlicenses:\n  - MIT\nlanguages:\n  - XML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/xmlformatter@0.2.8\n\nbin:\n  xmlformat: pypi:xmlformat\n"
  },
  {
    "path": "packages/yaml-language-server/package.yaml",
    "content": "---\nname: yaml-language-server\ndescription: Language Server for YAML Files.\nhomepage: https://github.com/redhat-developer/yaml-language-server\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories:\n  - LSP\n\nsource:\n  id: pkg:npm/yaml-language-server@1.22.0\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/redhat-developer/vscode-yaml/master/package.json\n\nbin:\n  yaml-language-server: npm:yaml-language-server\n\nneovim:\n  lspconfig: yamlls\n"
  },
  {
    "path": "packages/yamlfix/package.yaml",
    "content": "---\nname: yamlfix\ndescription: A simple and configurable YAML formatter that keeps comments.\nhomepage: https://github.com/lyz-code/yamlfix\nlicenses:\n  - GPL-3.0\nlanguages:\n  - YAML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/yamlfix@1.19.1\n\nbin:\n  yamlfix: pypi:yamlfix\n"
  },
  {
    "path": "packages/yamlfmt/package.yaml",
    "content": "---\nname: yamlfmt\ndescription: yamlfmt is an extensible command line tool or library to format yaml files.\nhomepage: https://github.com/google/yamlfmt\nlicenses:\n  - Apache-2.0\nlanguages:\n  - YAML\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/google/yamlfmt@v0.21.0\n  asset:\n    - target: darwin_arm64\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Darwin_arm64.tar.gz\n      bin: yamlfmt\n    - target: darwin_x64\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Darwin_x86_64.tar.gz\n      bin: yamlfmt\n    - target: linux_arm64\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Linux_arm64.tar.gz\n      bin: yamlfmt\n    - target: linux_x64\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Linux_x86_64.tar.gz\n      bin: yamlfmt\n    - target: win_x86\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Windows_i386.tar.gz\n      bin: yamlfmt.exe\n    - target: win_x64\n      file: yamlfmt_{{ version | strip_prefix \"v\" }}_Windows_x86_64.tar.gz\n      bin: yamlfmt.exe\n\nbin:\n  yamlfmt: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/yamllint/package.yaml",
    "content": "---\nname: yamllint\ndescription: |\n  Linter for YAML files. yamllint does not only check for syntax validity, but for weirdnesses like key repetition and\n  cosmetic problems such as lines length, trailing spaces, indentation, etc.\nhomepage: https://github.com/adrienverge/yamllint\nlicenses:\n  - GPL-3.0-or-later\nlanguages:\n  - YAML\ncategories:\n  - Linter\n\nsource:\n  id: pkg:pypi/yamllint@1.38.0\n\nbin:\n  yamllint: pypi:yamllint\n"
  },
  {
    "path": "packages/yapf/package.yaml",
    "content": "---\nname: yapf\ndescription: YAPF, Yet Another Python Formatter.\nhomepage: https://pypi.org/project/yapf/\nlicenses:\n  - Apache-2.0\nlanguages:\n  - Python\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:pypi/yapf@0.43.0\n  extra_packages:\n    - toml\n\nbin:\n  yapf: pypi:yapf\n"
  },
  {
    "path": "packages/yls-yara/package.yaml",
    "content": "---\nname: yls-yara\ndescription: Language server for the YARA language.\nhomepage: https://avast.github.io/yls/\nlicenses:\n  - MIT\nlanguages:\n  - YARA\ncategories:\n  - LSP\n\nsource:\n  id: pkg:pypi/yls-yara@1.4.4\n  supported_platforms:\n    # exclude darwin: https://github.com/avast/yls/issues/80\n    - linux\n    - win\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/avast/yls/v{{version}}/editors/vscode/package.json\n\nbin:\n  yls: pypi:yls\n"
  },
  {
    "path": "packages/yq/package.yaml",
    "content": "---\nname: yq\ndescription: yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor.\nhomepage: https://mikefarah.gitbook.io/yq/\nlicenses:\n  - MIT\nlanguages:\n  - YAML\ncategories: []\n\nsource:\n  id: pkg:github/mikefarah/yq@v4.53.2\n  asset:\n    - target: darwin_arm64\n      file: yq_darwin_arm64.tar.gz\n      bin: yq_darwin_arm64\n    - target: darwin_x64\n      file: yq_darwin_amd64.tar.gz\n      bin: yq_darwin_amd64\n    - target: linux_x64_gnu\n      file: yq_linux_amd64.tar.gz\n      bin: yq_linux_amd64\n    - target: linux_arm64_gnu\n      file: yq_linux_arm64.tar.gz\n      bin: yq_linux_arm64\n    - target: linux_x64_openbsd\n      file: yq_openbsd_amd64.tar.gz\n      bin: yq_openbsd_amd64\n    - target: linux_arm64_openbsd\n      file: yq_openbsd_arm64.tar.gz\n      bin: yq_openbsd_arm64\n    - target: linux_x86_openbsd\n      file: yq_openbsd_386.tar.gz\n      bin: yq_openbsd_386\n    - target: win_x64\n      file: yq_windows_amd64.exe\n      bin: yq_windows_amd64.exe\n    - target: win_x86\n      file: yq_windows_386.exe\n      bin: yq_windows_386.exe\n\nbin:\n  yq: \"{{source.asset.bin}}\"\n\nshare:\n  man/man1/yq.1: \"{{ 'yq.1' | take_if_not(is_platform('win')) }}\"\n"
  },
  {
    "path": "packages/zeek-language-server/package.yaml",
    "content": "---\nname: zeek-language-server\ndescription: This project implements a language server for Zeek script.\nhomepage: https://github.com/bbannier/zeek-language-server\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Zeek\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/bbannier/zeek-language-server@v0.74.0\n  asset:\n    - target: linux_x64_gnu\n      file: zeek-language-server-x86_64-unknown-linux-gnu.tar.xz\n      bin: zeek-language-server-x86_64-unknown-linux-gnu/zeek-language-server\n    - target: darwin_arm64\n      file: zeek-language-server-aarch64-apple-darwin.tar.xz\n      bin: zeek-language-server-aarch64-apple-darwin/zeek-language-server\n    - target: darwin_x64\n      file: zeek-language-server-x86_64-apple-darwin.tar.xz\n      bin: zeek-language-server-x86_64-apple-darwin/zeek-language-server\n\n  version_overrides:\n    - constraint: semver:<=v0.64.0\n      id: pkg:github/bbannier/zeek-language-server@v0.64.0\n      asset:\n        - target: linux_x64_gnu\n          file: zeek-language-server-x86_64-unknown-linux-gnu\n          bin: zeek-language-server-x86_64-unknown-linux-gnu\n        - target: darwin\n          file: zeek-language-server-x86_64-apple-darwin\n          bin: zeek-language-server-x86_64-apple-darwin\n\nschemas:\n  lsp: vscode:https://raw.githubusercontent.com/bbannier/zeek-language-server/{{version}}/vscode/package.json\n\nbin:\n  zeek-language-server: \"{{source.asset.bin}}\"\n"
  },
  {
    "path": "packages/zk/package.yaml",
    "content": "---\nname: zk\ndescription: A plain text note-taking assistant.\nhomepage: https://github.com/zk-org/zk\nlicenses:\n  - GPL-3.0-only\nlanguages:\n  - Markdown\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/zk-org/zk@v0.15.2\n  asset:\n    - target: linux_arm64\n      file: zk-{{version}}-linux-arm64.tar.gz\n    - target: linux_x64\n      file: zk-{{version}}-linux-amd64.tar.gz\n    - target: linux_x86\n      file: zk-{{version}}-linux-i386.tar.gz\n    - target: darwin_arm64\n      file: zk-{{version}}-macos-arm64.tar.gz\n    - target: darwin_x64\n      file: zk-{{version}}-macos-x86_64.tar.gz\n\nbin:\n  zk: zk\n\nneovim:\n  lspconfig: zk\n"
  },
  {
    "path": "packages/zls/package.yaml",
    "content": "---\nname: zls\ndescription: Zig LSP implementation + Zig Language Server.\nhomepage: https://github.com/zigtools/zls\nlicenses:\n  - MIT\nlanguages:\n  - Zig\ncategories:\n  - LSP\n\nsource:\n  id: pkg:github/zigtools/zls@0.16.0\n  asset:\n    - target: darwin_arm64\n      file: zls-aarch64-macos.tar.xz\n      bin: zls\n    - target: darwin_x64\n      file: zls-x86_64-macos.tar.xz\n      bin: zls\n    - target: linux_arm64\n      file: zls-aarch64-linux.tar.xz\n      bin: zls\n    - target: linux_x64\n      file: zls-x86_64-linux.tar.xz\n      bin: zls\n    - target: linux_x86\n      file: zls-x86-linux.tar.xz\n      bin: zls\n    - target: win_x86\n      file: zls-x86-windows.zip\n      bin: zls.exe\n    - target: win_x64\n      file: zls-x86_64-windows.zip\n      bin: zls.exe\n\n  version_overrides:\n    - constraint: semver:<=0.11.0\n      id: pkg:github/zigtools/zls@0.11.0\n      asset:\n        - target: darwin_arm64\n          file: zls-aarch64-macos.tar.gz\n          bin: bin/zls\n        - target: darwin_x64\n          file: zls-x86_64-macos.tar.gz\n          bin: bin/zls\n        - target: linux_arm64\n          file: zls-aarch64-linux.tar.gz\n          bin: bin/zls\n        - target: linux_x64\n          file: zls-x86_64-linux.tar.gz\n          bin: bin/zls\n        - target: linux_x86\n          file: zls-x86-linux.tar.gz\n          bin: bin/zls\n        - target: win_x86\n          file: zls-x86-windows.zip\n          bin: bin/zls.exe\n        - target: win_x64\n          file: zls-x86_64-windows.zip\n          bin: bin/zls.exe\n\n    - constraint: semver:<=0.10.0\n      id: pkg:github/zigtools/zls@0.10.0\n      asset:\n        - target: darwin_arm64\n          file: aarch64-macos.tar.zst\n          bin: bin/zls\n        - target: darwin_x64\n          file: x86_64-macos.tar.zst\n          bin: bin/zls\n        - target: linux_x64\n          file: x86_64-linux.tar.zst\n          bin: bin/zls\n        - target: linux_x86\n          file: i386-linux.tar.zst\n          bin: bin/zls\n        - target: win_x86\n          file: i386-windows.tar.zst\n          bin: bin/zls.exe\n        - target: win_x64\n          file: x86_64-windows.tar.zst\n          bin: bin/zls.exe\n\n\nschemas:\n  lsp: https://raw.githubusercontent.com/zigtools/zls/{{version}}/schema.json\n\nbin:\n  zls: \"{{source.asset.bin}}\"\n\nneovim:\n  lspconfig: zls\n"
  },
  {
    "path": "packages/zprint/package.yaml",
    "content": "---\nname: zprint\ndescription: Beautifully format Clojure and Clojurescript source code and s-expressions.\nhomepage: https://github.com/kkinnear/zprint\nlicenses:\n  - MIT\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:github/kkinnear/zprint@1.3.0\n  asset:\n    - target: darwin_arm64\n      file: zprintma-{{version}}\n    - target: darwin_x64\n      file: zprintm-{{version}}\n    - target: linux_x64_gnu\n      file: zprintl-{{version}}\n\nbin:\n  zprint: \"{{source.asset.file}}\"\n"
  },
  {
    "path": "packages/zprint-clj/package.yaml",
    "content": "---\nname: zprint-clj\ndescription: Node.js wrapper for ZPrint Clojure source code formatter\nhomepage: https://github.com/clj-commons/zprint-clj\nlicenses:\n  - MIT\nlanguages:\n  - Clojure\n  - ClojureScript\ncategories:\n  - Formatter\n\nsource:\n  id: pkg:npm/zprint-clj@0.8.0\n\nbin:\n  zprint-clj: npm:zprint-clj\n"
  },
  {
    "path": "packages/zuban/package.yaml",
    "content": "---\nname: zuban\ndescription: Zuban is a high-performant Mypy-compatible LSP and type checker built in Rust.\nhomepage: https://zubanls.com\nlicenses:\n  - AGPL-3.0\nlanguages:\n  - Python\ncategories:\n  - Linter\n  - LSP\n\nsource:\n  id: pkg:pypi/zuban@0.7.0\n\nbin:\n  zuban: pypi:zuban\n\nneovim:\n  lspconfig: zuban\n"
  },
  {
    "path": "renovate.json5",
    "content": "{\n    extends: [\"github>mason-org/registry-renovate-config\"],\n    packageRules: [\n        {\n            matchDepNames: [\"cucumber-language-server\"],\n            allowedVersions: \"!/^1\\\\.[34]\\\\.0/\"\n        },\n        {\n            matchDepNames: [\"rustfmt\"],\n            allowedVersions: \"<=1.5.1\"\n        },\n        {\n            matchDepNames: [\"tectonic\"],\n            allowedVersions: \"^tectonic%40\"\n        },\n        {\n            matchDepNames: [\"ansible-language-server\"],\n            allowedVersions: \"!/1\\\\.2\\\\.2/\"\n        },\n        {\n            matchDepNames: [\"autotools-language-server\"],\n            allowedVersions: \"!/0\\\\.0\\\\.19/\"\n        }\n    ],\n    \"ignoreDeps\": [\n        \"rescript-lsp\",\n        \"cuepls\"\n    ]\n}\n"
  }
]