{
  "name": "svelte-vscode",
  "version": "110.2.1",
  "private": true,
  "description": "Svelte language support for VS Code",
  "main": "dist/src/extension.js",
  "scripts": {
    "build:grammar": "npx js-yaml syntaxes/svelte.tmLanguage.src.yaml > syntaxes/svelte.tmLanguage.json && npx js-yaml syntaxes/postcss.src.yaml > syntaxes/postcss.json",
    "build:ts": "tsc -p ./",
    "build": "npm run build:ts && npm run build:grammar",
    "vscode:prepublish": "npm install && npm run build && npm prune --production",
    "watch": "npm run build:grammar && tsc -w -p ./",
    "test": "npm run build:grammar && node test/grammar/test.js && vitest --run"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sveltejs/language-tools.git"
  },
  "keywords": [
    "svelte",
    "vscode"
  ],
  "author": "The Svelte Community",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sveltejs/language-tools/issues"
  },
  "homepage": "https://github.com/sveltejs/language-tools#readme",
  "displayName": "Svelte for VS Code",
  "publisher": "svelte",
  "icon": "icons/logo.png",
  "galleryBanner": {
    "color": "#FF3E00",
    "theme": "dark"
  },
  "categories": [
    "Programming Languages",
    "Formatters"
  ],
  "engines": {
    "vscode": "^1.82.0"
  },
  "activationEvents": [
    "onLanguage:svelte",
    "onCommand:svelte.restartLanguageServer",
    "onLanguage:javascript",
    "onLanguage:typescript"
  ],
  "capabilities": {
    "untrustedWorkspaces": {
      "supported": "limited",
      "restrictedConfigurations": [
        "svelte.language-server.runtime",
        "svelte.language-server.ls-path",
        "svelte.language-server.runtime-args"
      ],
      "description": "The extension requires workspace trust because it executes code specified by the workspace. Loading the user's node_modules and loading svelte config files is disabled when untrusted"
    }
  },
  "contributes": {
    "typescriptServerPlugins": [
      {
        "name": "typescript-svelte-plugin",
        "enableForWorkspaceTypeScriptVersions": true
      }
    ],
    "configuration": {
      "type": "object",
      "title": "Svelte",
      "properties": {
        "svelte.enable-ts-plugin": {
          "type": "boolean",
          "default": false,
          "title": "Enable TypeScript Svelte plugin",
          "description": "Enables a TypeScript plugin which provides intellisense for Svelte files inside TS/JS files."
        },
        "svelte.ask-to-enable-ts-plugin": {
          "type": "boolean",
          "default": true,
          "title": "Ask to enable TypeScript Svelte plugin",
          "description": "Ask on startup to enable the TypeScript plugin."
        },
        "svelte.language-server.runtime": {
          "type": "string",
          "title": "Language Server Runtime",
          "description": "- You normally don't need this - Path to the node executable to use to spawn the language server. This is useful when you depend on native modules such as node-sass as without this they will run in the context of vscode, meaning node version mismatch is likely. Minimum required node version is 12.17. This setting can only be changed in user settings for security reasons."
        },
        "svelte.language-server.ls-path": {
          "type": "string",
          "title": "Language Server Path",
          "description": "- You normally don't set this - Path to the language server executable. If you installed the \"svelte-language-server\" npm package, it's within there at \"bin/server.js\". Path can be either relative to your workspace root or absolute. Set this only if you want to use a custom version of the language server. This will then also use the workspace version of TypeScript. This setting can only be changed in user settings for security reasons."
        },
        "svelte.language-server.runtime-args": {
          "type": "array",
          "title": "Language Server Runtime Args",
          "description": "You normally don't set this. Additional arguments to pass to the node executable when spawning the language server. This is useful when you use something like Yarn PnP and need its loader arguments `[\"--loader\", \".pnp.loader.mjs\"]`."
        },
        "svelte.language-server.port": {
          "type": "number",
          "title": "Language Server Port",
          "description": "- You normally don't set this - At which port to spawn the language server. Can be used for attaching to the process for debugging / profiling. If you experience crashes due to \"port already in use\", try setting the port. -1 = default port is used.",
          "default": -1
        },
        "svelte.language-server.debug": {
          "type": "boolean",
          "title": "Language Server Debug Mode",
          "description": "- You normally don't set this - Enable more verbose logging for the language server useful for debugging language server execution."
        },
        "svelte.trace.server": {
          "type": "string",
          "enum": [
            "off",
            "messages",
            "verbose"
          ],
          "default": "off",
          "description": "Traces the communication between VS Code and the Svelte Language Server."
        },
        "svelte.ui.svelteKitFilesContextMenu.enable": {
          "type": "string",
          "default": "auto",
          "enum": [
            "auto",
            "never",
            "always"
          ],
          "description": "Show a context menu to generate SvelteKit files. \"always\" to always show it. \"never\" to always disable it. \"auto\" to show it when in a SvelteKit project. "
        },
        "svelte.plugin.typescript.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript",
          "description": "Enable the TypeScript plugin"
        },
        "svelte.plugin.typescript.diagnostics.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Diagnostics",
          "description": "Enable diagnostic messages for TypeScript"
        },
        "svelte.plugin.typescript.hover.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Hover Info",
          "description": "Enable hover info for TypeScript"
        },
        "svelte.plugin.typescript.documentSymbols.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Symbols in Outline",
          "description": "Enable document symbols for TypeScript"
        },
        "svelte.plugin.typescript.completions.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Completions",
          "description": "Enable completions for TypeScript"
        },
        "svelte.plugin.typescript.codeActions.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Code Actions",
          "description": "Enable code actions for TypeScript"
        },
        "svelte.plugin.typescript.selectionRange.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Selection Range",
          "description": "Enable selection range for TypeScript"
        },
        "svelte.plugin.typescript.signatureHelp.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Signature Help",
          "description": "Enable signature help (parameter hints) for TypeScript"
        },
        "svelte.plugin.typescript.semanticTokens.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Semantic Tokens",
          "description": "Enable semantic tokens (semantic highlight) for TypeScript."
        },
        "svelte.plugin.typescript.workspaceSymbols.enable": {
          "type": "boolean",
          "default": true,
          "title": "TypeScript: Workspace Symbols",
          "description": "Enable workspace symbols for TypeScript."
        },
        "svelte.plugin.css.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS",
          "description": "Enable the CSS plugin"
        },
        "svelte.plugin.css.globals": {
          "type": "string",
          "default": "",
          "title": "CSS: Global Files",
          "description": "Which css files should be checked for global variables (`--global-var: value;`). These variables are added to the css completions. String of comma-separated file paths or globs relative to workspace root."
        },
        "svelte.plugin.css.diagnostics.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Diagnostics",
          "description": "Enable diagnostic messages for CSS"
        },
        "svelte.plugin.css.hover.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Hover Info",
          "description": "Enable hover info for CSS"
        },
        "svelte.plugin.css.completions.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Auto Complete",
          "description": "Enable auto completions for CSS"
        },
        "svelte.plugin.css.completions.emmet": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Include Emmet Completions",
          "description": "Enable emmet auto completions for CSS"
        },
        "svelte.plugin.css.documentColors.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Document Colors",
          "description": "Enable document colors for CSS"
        },
        "svelte.plugin.css.colorPresentations.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Color Picker",
          "description": "Enable color picker for CSS"
        },
        "svelte.plugin.css.documentSymbols.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: Symbols in Outline",
          "description": "Enable document symbols for CSS"
        },
        "svelte.plugin.css.selectionRange.enable": {
          "type": "boolean",
          "default": true,
          "title": "CSS: SelectionRange",
          "description": "Enable selection range for CSS"
        },
        "svelte.plugin.html.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML",
          "description": "Enable the HTML plugin"
        },
        "svelte.plugin.html.hover.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Hover Info",
          "description": "Enable hover info for HTML"
        },
        "svelte.plugin.html.completions.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Auto Complete",
          "description": "Enable auto completions for HTML"
        },
        "svelte.plugin.html.completions.emmet": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Include Emmet Completions",
          "description": "Enable emmet auto completions for HTML"
        },
        "svelte.plugin.html.tagComplete.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Tag Auto Closing",
          "description": "Enable HTML tag auto closing"
        },
        "svelte.plugin.html.documentSymbols.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Symbols in Outline",
          "description": "Enable document symbols for HTML"
        },
        "svelte.plugin.html.linkedEditing.enable": {
          "type": "boolean",
          "default": true,
          "title": "HTML: Linked Editing",
          "description": "Enable Linked Editing for HTML"
        },
        "svelte.plugin.svelte.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte",
          "description": "Enable the Svelte plugin"
        },
        "svelte.plugin.svelte.diagnostics.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Diagnostics",
          "description": "Enable diagnostic messages for Svelte"
        },
        "svelte.plugin.svelte.compilerWarnings": {
          "type": "object",
          "additionalProperties": {
            "type": "string",
            "enum": [
              "ignore",
              "error"
            ]
          },
          "default": {},
          "title": "Svelte: Compiler Warnings Settings",
          "description": "Svelte compiler warning codes to ignore or to treat as errors. Example: { 'css-unused-selector': 'ignore', 'unused-export-let': 'error'}"
        },
        "svelte.plugin.svelte.format.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Format",
          "description": "Enable formatting for Svelte (includes css & js). You can set some formatting options through this extension. They will be ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.svelteSortOrder": {
          "type": "string",
          "default": "options-scripts-markup-styles",
          "title": "Svelte Format: Sort Order",
          "description": "Format: join the keys `options`, `scripts`, `markup`, `styles` with a - in the order you want. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.svelteStrictMode": {
          "type": "boolean",
          "default": false,
          "title": "Svelte Format: Strict Mode",
          "description": "More strict HTML syntax. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.svelteAllowShorthand": {
          "type": "boolean",
          "default": true,
          "title": "Svelte Format: Allow Shorthand",
          "description": "Option to enable/disable component attribute shorthand if attribute name and expression are the same. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.svelteBracketNewLine": {
          "type": "boolean",
          "default": true,
          "title": "Svelte Format: Bracket New Line",
          "description": "Put the `>` of a multiline element on a new line. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.svelteIndentScriptAndStyle": {
          "type": "boolean",
          "default": true,
          "title": "Svelte Format: Indent Script And Style",
          "description": "Whether or not to indent code inside `<script>` and `<style>` tags. This option is ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.printWidth": {
          "type": "number",
          "default": 80,
          "title": "Svelte Format: Print Width",
          "description": "Maximum line width after which code is tried to be broken up. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.format.config.singleQuote": {
          "type": "boolean",
          "default": false,
          "title": "Svelte Format: Quotes",
          "description": "Use single quotes instead of double quotes, where possible. This is a Prettier core option. If you have the Prettier extension installed, this option is ignored and the corresponding option of that extension is used instead. This option is also ignored if there's any kind of configuration file, for example a `.prettierrc` file."
        },
        "svelte.plugin.svelte.completions.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Completions",
          "description": "Enable auto completions for Svelte"
        },
        "svelte.plugin.svelte.hover.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Hover",
          "description": "Enable hover information for Svelte"
        },
        "svelte.plugin.svelte.codeActions.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Code Actions",
          "description": "Enable Code Actions for Svelte"
        },
        "svelte.plugin.svelte.selectionRange.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Selection Range",
          "description": "Enable selection range for Svelte"
        },
        "svelte.plugin.svelte.rename.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Rename",
          "description": "Enable rename/move Svelte files functionality"
        },
        "svelte.plugin.svelte.runesLegacyModeCodeLens.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Legacy/Runes mode Code Lens",
          "description": "Show a code lens at the top of Svelte files indicating if they are in runes mode or legacy mode. Only visible in Svelte 5 projects."
        },
        "svelte.plugin.svelte.defaultScriptLanguage": {
          "type": "string",
          "default": "none",
          "title": "Svelte: Default Script Language",
          "description": "The default language to use when generating new script tags",
          "enum": [
            "none",
            "ts"
          ]
        },
        "svelte.plugin.svelte.documentHighlight.enable": {
          "type": "boolean",
          "default": true,
          "title": "Svelte: Document Highlight",
          "description": "Enable document highlight support. Requires a restart."
        }
      }
    },
    "languages": [
      {
        "id": "svelte",
        "aliases": [
          "Svelte",
          "svelte"
        ],
        "extensions": [
          ".svelte"
        ],
        "configuration": "./language-configuration.json"
      },
      {
        "id": "svelte-start-tag",
        "configuration": "./language-configuration-start-tag.json"
      },
      {
        "id": "json",
        "filenames": [
          ".prettierrc"
        ]
      }
    ],
    "jsonValidation": [
      {
        "fileMatch": ".prettierrc",
        "url": "./prettier-options-schema.json"
      },
      {
        "fileMatch": ".prettierrc.json",
        "url": "./prettier-options-schema.json"
      },
      {
        "fileMatch": "package.json",
        "url": "./package-json-schema.json"
      }
    ],
    "grammars": [
      {
        "language": "svelte",
        "scopeName": "source.svelte",
        "path": "./syntaxes/svelte.tmLanguage.json",
        "embeddedLanguages": {
          "text.html.basic": "html",
          "text.html.markdown": "markdown",
          "text.pug": "jade",
          "meta.tag.start.svelte": "svelte-start-tag",
          "punctuation.definition.tag.begin.svelte": "svelte",
          "source.css": "css",
          "source.css.less": "less",
          "source.css.scss": "scss",
          "source.css.postcss": "postcss",
          "source.sass": "sass",
          "source.stylus": "stylus",
          "source.js": "javascript",
          "source.ts": "typescript",
          "source.coffee": "coffeescript"
        },
        "unbalancedBracketScopes": [
          "keyword.operator.relational",
          "storage.type.function.arrow",
          "keyword.operator.bitwise.shift",
          "meta.brace.angle",
          "punctuation.definition.tag"
        ],
        "tokenTypes": {
          "punctuation.definition.template-expression": "other",
          "entity.name.type.instance.jsdoc": "other",
          "entity.name.function.tagged-template": "other",
          "meta.import string.quoted": "other",
          "variable.other.jsdoc": "other"
        }
      },
      {
        "scopeName": "svelte.pug",
        "path": "./syntaxes/pug-svelte.json",
        "injectTo": [
          "source.svelte"
        ],
        "embeddedLanguages": {
          "source.ts": "typescript",
          "text.pug": "jade"
        }
      },
      {
        "scopeName": "svelte.pug.tags",
        "path": "./syntaxes/pug-svelte-tags.json",
        "injectTo": [
          "source.svelte"
        ],
        "embeddedLanguages": {
          "source.ts": "typescript",
          "text.pug": "jade"
        }
      },
      {
        "scopeName": "svelte.pug.dotblock",
        "path": "./syntaxes/pug-svelte-dotblock.json",
        "injectTo": [
          "source.svelte"
        ],
        "embeddedLanguages": {
          "source.ts": "typescript"
        }
      },
      {
        "scopeName": "markdown.svelte.codeblock",
        "path": "./syntaxes/markdown-svelte.json",
        "injectTo": [
          "text.html.markdown",
          "source.mdx"
        ],
        "embeddedLanguages": {
          "meta.embedded.block.svelte": "svelte"
        }
      },
      {
        "scopeName": "markdown.svelte.codeblock.script",
        "path": "./syntaxes/markdown-svelte-js.json",
        "injectTo": [
          "text.html.markdown",
          "source.mdx"
        ]
      },
      {
        "scopeName": "markdown.svelte.codeblock.style",
        "path": "./syntaxes/markdown-svelte-css.json",
        "injectTo": [
          "text.html.markdown",
          "source.mdx"
        ]
      },
      {
        "scopeName": "source.css.postcss",
        "path": "./syntaxes/postcss.json",
        "injectTo": [
          "source.svelte"
        ]
      }
    ],
    "commands": [
      {
        "command": "svelte.restartLanguageServer",
        "title": "Svelte: Restart Language Server"
      },
      {
        "command": "svelte.showCompiledCodeToSide",
        "title": "Svelte: Show Compiled Code",
        "icon": {
          "light": "icons/preview-right-light.svg",
          "dark": "icons/preview-right-dark.svg"
        }
      },
      {
        "command": "svelte.showCompiledCSSToSide",
        "title": "Svelte: Show Compiled CSS",
        "icon": {
          "light": "icons/preview-css-right-light.svg",
          "dark": "icons/preview-css-right-dark.svg"
        }
      },
      {
        "command": "svelte.extractComponent",
        "title": "Svelte: Extract Component"
      },
      {
        "command": "svelte.migrate_to_svelte_5",
        "title": "Svelte: Migrate Component to Svelte 5 Syntax"
      },
      {
        "command": "svelte.typescript.findAllFileReferences",
        "title": "Svelte: Find File References"
      },
      {
        "command": "svelte.typescript.findComponentReferences",
        "title": "Svelte: Find Component References"
      },
      {
        "command": "svelte.kit.generateMultipleFiles",
        "title": "SvelteKit: Create route"
      },
      {
        "command": "svelte.kit.generatePage",
        "title": "SvelteKit: Create +page.svelte"
      },
      {
        "command": "svelte.kit.generatePageLoad",
        "title": "SvelteKit: Create +page.js/ts"
      },
      {
        "command": "svelte.kit.generatePageServerLoad",
        "title": "SvelteKit: Create +page.server.js/ts"
      },
      {
        "command": "svelte.kit.generateLayout",
        "title": "SvelteKit: Create +layout.svelte"
      },
      {
        "command": "svelte.kit.generateLayoutLoad",
        "title": "SvelteKit: Create +layout.js/ts"
      },
      {
        "command": "svelte.kit.generateLayoutServerLoad",
        "title": "SvelteKit: Create +layout.server.js/ts"
      },
      {
        "command": "svelte.kit.generateServer",
        "title": "SvelteKit: Create +server.js/ts"
      },
      {
        "command": "svelte.kit.generateError",
        "title": "SvelteKit: Create +error.svelte"
      }
    ],
    "menus": {
      "commandPalette": [
        {
          "command": "svelte.showCompiledCodeToSide",
          "when": "editorLangId == svelte"
        },
        {
          "command": "svelte.showCompiledCSSToSide",
          "when": "editorLangId == svelte"
        },
        {
          "command": "svelte.typescript.findAllFileReferences",
          "when": "editorLangId == svelte && resourceScheme == file"
        },
        {
          "command": "svelte.typescript.findComponentReferences",
          "when": "editorLangId == svelte && resourceScheme == file"
        }
      ],
      "editor/title": [
        {
          "command": "svelte.showCompiledCodeToSide",
          "when": "editorLangId == svelte",
          "group": "navigation"
        },
        {
          "command": "svelte.showCompiledCSSToSide",
          "when": "editorLangId == svelte",
          "group": "navigation"
        }
      ],
      "editor/title/context": [
        {
          "command": "svelte.typescript.findAllFileReferences",
          "when": "resourceLangId == svelte && resourceScheme == file"
        },
        {
          "command": "svelte.typescript.findComponentReferences",
          "when": "resourceLangId == svelte && resourceScheme == file"
        }
      ],
      "editor/context": [
        {
          "command": "svelte.extractComponent",
          "when": "editorLangId == svelte",
          "group": "1_modification"
        },
        {
          "command": "svelte.typescript.findAllFileReferences",
          "when": "editorLangId == svelte",
          "group": "4_search"
        },
        {
          "command": "svelte.typescript.findComponentReferences",
          "when": "editorLangId == svelte",
          "group": "4_search"
        }
      ],
      "explorer/context": [
        {
          "command": "svelte.typescript.findAllFileReferences",
          "when": "resourceLangId == svelte",
          "group": "4_search"
        },
        {
          "command": "svelte.typescript.findComponentReferences",
          "when": "resourceLangId == svelte",
          "group": "4_search"
        },
        {
          "when": "explorerResourceIsFolder && config.svelte.ui.svelteKitFilesContextMenu.enable == always || explorerResourceIsFolder && svelte.uiContext.svelteKitFilesContextMenu.enable",
          "submenu": "sveltekit2files",
          "group": "1_SvelteKit2files"
        }
      ],
      "sveltekit2files": [
        {
          "command": "svelte.kit.generateMultipleFiles",
          "group": "0_SvelteKit_Multiple"
        },
        {
          "command": "svelte.kit.generatePage",
          "group": "1_SvelteKit_Page"
        },
        {
          "command": "svelte.kit.generatePageLoad",
          "group": "1_SvelteKit_Page"
        },
        {
          "command": "svelte.kit.generatePageServerLoad",
          "group": "1_SvelteKit_Page"
        },
        {
          "command": "svelte.kit.generateLayout",
          "group": "3_SvelteKit_Layout"
        },
        {
          "command": "svelte.kit.generateLayoutLoad",
          "group": "3_SvelteKit_Layout"
        },
        {
          "command": "svelte.kit.generateLayoutServerLoad",
          "group": "3_SvelteKit_Layout"
        },
        {
          "command": "svelte.kit.generateServer",
          "group": "2_SvelteKit_Server"
        },
        {
          "command": "svelte.kit.generateError",
          "group": "4_SvelteKit_Error"
        }
      ]
    },
    "submenus": [
      {
        "id": "sveltekit2files",
        "label": "SvelteKit Files"
      }
    ],
    "breakpoints": [
      {
        "language": "svelte"
      }
    ],
    "snippets": [
      {
        "language": "svelte",
        "path": "./snippets/svelte.json"
      },
      {
        "language": "javascript",
        "path": "./snippets/javascript.json"
      },
      {
        "language": "typescript",
        "path": "./snippets/typescript.json"
      }
    ]
  },
  "devDependencies": {
    "@types/node": "^18.0.0",
    "@types/semver": "^7.7.0",
    "@types/vscode": "^1.67",
    "js-yaml": "^3.14.0",
    "semver": "^7.7.2",
    "tslib": "^2.4.0",
    "vitest": "^3.2.4",
    "textmate-grammar-test": "^0.6.0"
  },
  "dependencies": {
    "svelte-language-server": "*",
    "typescript-svelte-plugin": "*",
    "vscode-languageclient": "^9.0.1",
    "vscode-languageserver-protocol": "3.17.5",
    "typescript": "^6.0.3"
  }
}
