{ "name": "hemx-heml", "displayName": "Hemx HEML", "description": "Compiler-backed .heml diagnostics, completion, and hover while preserving VS Code HTML tooling.", "version": "0.1.0", "publisher": "hemx", "engines": { "vscode": "^1.80.0" }, "categories": [ "Programming Languages" ], "activationEvents": [ "workspaceContains:**/*.heml", "onLanguage:html", "onLanguage:heml" ], "main": "./extension.js", "contributes": { "configurationDefaults": { "files.associations": { "*.heml": "html" } }, "configuration": { "title": "Hemx HEML", "properties": { "hemx.heml.lspCommand": { "type": "string", "default": "", "description": "Command used to start hemx-lsp. Empty means: use `cargo run -p hemx-lsp -- lsp` inside the hemx repo, otherwise `hemx-lsp lsp`." }, "hemx.heml.lspArgs": { "type": "array", "default": [], "items": { "type": "string" }, "description": "Arguments for hemx.heml.lspCommand. Leave empty to use the automatic repo/installed-binary defaults." } } } } }