Same JetBrains-docs fix as zshrs v0.11.35: in plugin model v2 (which
2025.2+ requires for bundled-module deps), `intellij.spellchecker` is
a V2 module — `<depends>com.intellij.spellchecker</depends>` declares a
plugin-ID dep and fails verification ("unknown plugin"). Correct
syntax is a separate `<dependencies>` block:
<dependencies>
<module name="intellij.spellchecker"/>
</dependencies>
build.gradle.kts already had `bundledModule("intellij.spellchecker")`
for compile-time resolution; this commit fixes the runtime EP wiring.
Source: https://blog.jetbrains.com/platform/2025/11/intellij-platform-2025-3-what-plugin-developers-should-know/