{
  "name": "coc-lua",
  "version": "2.0.6",
  "description": "lua extension for coc",
  "author": "josa@gesell.me",
  "license": "MIT",
  "main": "lib/extension.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/josa42/coc-lua.git"
  },
  "engines": {
    "coc": "^0.0.82",
    "node": ">=16"
  },
  "keywords": [
    "coc.nvim",
    "languageserver",
    "lua"
  ],
  "scripts": {
    "clean": "rimraf lib",
    "build": "tsc -p tsconfig.json",
    "build:watch": "tsc --watch -p tsconfig.json",
    "prepare": "npm run clean && npm run build",
    "lint:fix": "eslint . --ext .ts,.js --fix",
    "lint": "eslint . --ext .ts,.js",
    "test": "jest"
  },
  "activationEvents": [
    "onLanguage:lua",
    "onCommand:lua.version",
    "onCommand:lua.update"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "lua",
      "properties": {
        "lua.enable": {
          "type": "boolean",
          "default": true
        },
        "lua.checkForUpdates": {
          "description": "Check for LuaLS/lua-language-server updates on start.",
          "type": "string",
          "default": "inform",
          "enum": [
            "disabled",
            "inform",
            "ask",
            "install"
          ]
        },
        "lua.installPreReleases": {
          "description": "Install latest pre-release of LuaLS/lua-language-server.",
          "type": "boolean",
          "default": false
        },
        "lua.trace.server": {
          "type": "string",
          "default": "off",
          "enum": [
            "off",
            "messages",
            "verbose"
          ]
        },
        "Lua.addonManager.enable": {
          "default": true,
          "markdownDescription": "Set the on/off state for the addon manager.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.codeLens.enable": {
          "default": false,
          "markdownDescription": "Enable code lens.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.completion.autoRequire": {
          "default": true,
          "markdownDescription": "When the input looks like a file name, automatically `require` this file.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.completion.callSnippet": {
          "default": "Disable",
          "enum": [
            "Disable",
            "Both",
            "Replace"
          ],
          "markdownDescription": "Shows function call snippets.",
          "markdownEnumDescriptions": [
            "Only shows `function name`.",
            "Shows `function name` and `call snippet`.",
            "Only shows `call snippet.`"
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.completion.displayContext": {
          "default": 0,
          "markdownDescription": "Previewing the relevant code snippet of the suggestion may help you understand the usage of the suggestion. The number set indicates the number of intercepted lines in the code fragment. If it is set to `0`, this feature can be disabled.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.completion.enable": {
          "default": true,
          "markdownDescription": "Enable completion.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.completion.keywordSnippet": {
          "default": "Replace",
          "enum": [
            "Disable",
            "Both",
            "Replace"
          ],
          "markdownDescription": "Shows keyword syntax snippets.",
          "markdownEnumDescriptions": [
            "Only shows `keyword`.",
            "Shows `keyword` and `syntax snippet`.",
            "Only shows `syntax snippet`."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.completion.postfix": {
          "default": "@",
          "markdownDescription": "The symbol used to trigger the postfix suggestion.",
          "scope": "resource",
          "type": "string"
        },
        "Lua.completion.requireSeparator": {
          "default": ".",
          "markdownDescription": "The separator used when `require`.",
          "scope": "resource",
          "type": "string"
        },
        "Lua.completion.showParams": {
          "default": true,
          "markdownDescription": "Display parameters in completion list. When the function has multiple definitions, they will be displayed separately.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.completion.showWord": {
          "default": "Fallback",
          "enum": [
            "Enable",
            "Fallback",
            "Disable"
          ],
          "markdownDescription": "Show contextual words in suggestions.",
          "markdownEnumDescriptions": [
            "Always show context words in suggestions.",
            "Contextual words are only displayed when suggestions based on semantics cannot be provided.",
            "Do not display context words."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.completion.workspaceWord": {
          "default": true,
          "markdownDescription": "Whether the displayed context word contains the content of other files in the workspace.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.diagnostics.disable": {
          "default": [],
          "items": {
            "enum": [
              "action-after-return",
              "ambiguity-1",
              "ambiguous-syntax",
              "args-after-dots",
              "assign-type-mismatch",
              "await-in-sync",
              "block-after-else",
              "break-outside",
              "cast-local-type",
              "cast-type-mismatch",
              "circle-doc-class",
              "close-non-object",
              "code-after-break",
              "codestyle-check",
              "count-down-loop",
              "deprecated",
              "different-requires",
              "discard-returns",
              "doc-field-no-class",
              "duplicate-doc-alias",
              "duplicate-doc-field",
              "duplicate-doc-param",
              "duplicate-index",
              "duplicate-set-field",
              "empty-block",
              "err-assign-as-eq",
              "err-c-long-comment",
              "err-comment-prefix",
              "err-do-as-then",
              "err-eq-as-assign",
              "err-esc",
              "err-nonstandard-symbol",
              "err-then-as-do",
              "exp-in-action",
              "global-in-nil-env",
              "index-in-func-name",
              "invisible",
              "jump-local-scope",
              "keyword",
              "local-limit",
              "lowercase-global",
              "lua-doc-miss-sign",
              "luadoc-error-diag-mode",
              "luadoc-miss-alias-extends",
              "luadoc-miss-alias-name",
              "luadoc-miss-arg-name",
              "luadoc-miss-cate-name",
              "luadoc-miss-class-extends-name",
              "luadoc-miss-class-name",
              "luadoc-miss-diag-mode",
              "luadoc-miss-diag-name",
              "luadoc-miss-field-extends",
              "luadoc-miss-field-name",
              "luadoc-miss-fun-after-overload",
              "luadoc-miss-generic-name",
              "luadoc-miss-local-name",
              "luadoc-miss-module-name",
              "luadoc-miss-operator-name",
              "luadoc-miss-param-extends",
              "luadoc-miss-param-name",
              "luadoc-miss-see-name",
              "luadoc-miss-sign-name",
              "luadoc-miss-symbol",
              "luadoc-miss-type-name",
              "luadoc-miss-vararg-type",
              "luadoc-miss-version",
              "malformed-number",
              "miss-end",
              "miss-esc-x",
              "miss-exp",
              "miss-exponent",
              "miss-field",
              "miss-loop-max",
              "miss-loop-min",
              "miss-method",
              "miss-name",
              "miss-sep-in-table",
              "miss-space-between",
              "miss-symbol",
              "missing-parameter",
              "missing-return",
              "missing-return-value",
              "need-check-nil",
              "need-paren",
              "nesting-long-mark",
              "newfield-call",
              "newline-call",
              "no-unknown",
              "no-visible-label",
              "not-yieldable",
              "param-type-mismatch",
              "redefined-label",
              "redefined-local",
              "redundant-parameter",
              "redundant-return",
              "redundant-return-value",
              "redundant-value",
              "return-type-mismatch",
              "set-const",
              "spell-check",
              "trailing-space",
              "unbalanced-assignments",
              "undefined-doc-class",
              "undefined-doc-name",
              "undefined-doc-param",
              "undefined-env-child",
              "undefined-field",
              "undefined-global",
              "unexpect-dots",
              "unexpect-efunc-name",
              "unexpect-lfunc-name",
              "unexpect-symbol",
              "unicode-name",
              "unknown-attribute",
              "unknown-cast-variable",
              "unknown-diag-code",
              "unknown-operator",
              "unknown-symbol",
              "unreachable-code",
              "unsupport-symbol",
              "unused-function",
              "unused-label",
              "unused-local",
              "unused-vararg"
            ],
            "type": "string"
          },
          "markdownDescription": "Disabled diagnostic (Use code in hover brackets).",
          "scope": "resource",
          "type": "array"
        },
        "Lua.diagnostics.disableScheme": {
          "default": [
            "git"
          ],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Do not diagnose Lua files that use the following scheme.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.diagnostics.enable": {
          "default": true,
          "markdownDescription": "Enable diagnostics.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.diagnostics.globals": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Defined global variables.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.diagnostics.ignoredFiles": {
          "default": "Opened",
          "enum": [
            "Enable",
            "Opened",
            "Disable"
          ],
          "markdownDescription": "How to diagnose ignored files.",
          "markdownEnumDescriptions": [
            "Always diagnose these files.",
            "Only when these files are opened will it be diagnosed.",
            "These files are not diagnosed."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.diagnostics.libraryFiles": {
          "default": "Opened",
          "enum": [
            "Enable",
            "Opened",
            "Disable"
          ],
          "markdownDescription": "How to diagnose files loaded via `Lua.workspace.library`.",
          "markdownEnumDescriptions": [
            "Always diagnose these files.",
            "Only when these files are opened will it be diagnosed.",
            "These files are not diagnosed."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.diagnostics.unusedLocalExclude": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Do not diagnose `unused-local` when the variable name matches the following pattern.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.diagnostics.workspaceDelay": {
          "default": 3000,
          "markdownDescription": "Latency (milliseconds) for workspace diagnostics.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.diagnostics.workspaceEvent": {
          "default": "OnSave",
          "enum": [
            "OnChange",
            "OnSave",
            "None"
          ],
          "markdownDescription": "Set the time to trigger workspace diagnostics.",
          "markdownEnumDescriptions": [
            "Trigger workspace diagnostics when the file is changed.",
            "Trigger workspace diagnostics when the file is saved.",
            "Disable workspace diagnostics."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.diagnostics.workspaceRate": {
          "default": 100,
          "markdownDescription": "Workspace diagnostics run rate (%). Decreasing this value reduces CPU usage, but also reduces the speed of workspace diagnostics. The diagnosis of the file you are currently editing is always done at full speed and is not affected by this setting.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.doc.packageName": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Treat specific field names as package, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are package, witch can only be accessed in the file where the definition is located.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.doc.privateName": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Treat specific field names as private, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are private, witch can only be accessed in the class where the definition is located.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.doc.protectedName": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Treat specific field names as protected, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are protected, witch can only be accessed in the class where the definition is located and its subclasses.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.format.defaultConfig": {
          "additionalProperties": false,
          "default": {},
          "markdownDescription": "The default format configuration. Has a lower priority than `.editorconfig` file in the workspace.\nRead [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.\n",
          "patternProperties": {
            ".*": {
              "default": "",
              "type": "string"
            }
          },
          "scope": "resource",
          "title": "defaultConfig",
          "type": "object"
        },
        "Lua.format.enable": {
          "default": true,
          "markdownDescription": "Enable code formatter.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hint.arrayIndex": {
          "default": "Auto",
          "enum": [
            "Enable",
            "Auto",
            "Disable"
          ],
          "markdownDescription": "Show hints of array index when constructing a table.",
          "markdownEnumDescriptions": [
            "Show hints in all tables.",
            "Show hints only when the table is greater than 3 items, or the table is a mixed table.",
            "Disable hints of array index."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.hint.await": {
          "default": true,
          "markdownDescription": "If the called function is marked `---@async`, prompt `await` at the call.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hint.enable": {
          "default": false,
          "markdownDescription": "Enable inlay hint.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hint.paramName": {
          "default": "All",
          "enum": [
            "All",
            "Literal",
            "Disable"
          ],
          "markdownDescription": "Show hints of parameter name at the function call.",
          "markdownEnumDescriptions": [
            "All types of parameters are shown.",
            "Only literal type parameters are shown.",
            "Disable parameter hints."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.hint.paramType": {
          "default": true,
          "markdownDescription": "Show type hints at the parameter of the function.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hint.semicolon": {
          "default": "SameLine",
          "enum": [
            "All",
            "SameLine",
            "Disable"
          ],
          "markdownDescription": "If there is no semicolon at the end of the statement, display a virtual semicolon.",
          "markdownEnumDescriptions": [
            "All statements display virtual semicolons.",
            "When two statements are on the same line, display a semicolon between them.",
            "Disable virtual semicolons."
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.hint.setType": {
          "default": false,
          "markdownDescription": "Show hints of type at assignment operation.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hover.enable": {
          "default": true,
          "markdownDescription": "Enable hover.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hover.enumsLimit": {
          "default": 5,
          "markdownDescription": "When the value corresponds to multiple types, limit the number of types displaying.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.hover.expandAlias": {
          "default": true,
          "markdownDescription": "Whether to expand the alias. For example, expands `---@alias myType boolean|number` appears as `boolean|number`, otherwise it appears as `myType'.\n",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hover.previewFields": {
          "default": 50,
          "markdownDescription": "When hovering to view a table, limits the maximum number of previews for fields.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.hover.viewNumber": {
          "default": true,
          "markdownDescription": "Hover to view numeric content (only if literal is not decimal).",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hover.viewString": {
          "default": true,
          "markdownDescription": "Hover to view the contents of a string (only if the literal contains an escape character).",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.hover.viewStringMax": {
          "default": 1000,
          "markdownDescription": "The maximum length of a hover to view the contents of a string.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.misc.executablePath": {
          "default": "",
          "markdownDescription": "Specify the executable path in VSCode.",
          "scope": "resource",
          "type": "string"
        },
        "Lua.misc.parameters": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "[Command line parameters](https://github.com/LuaLS/lua-telemetry-server/tree/master/method) when starting the language server in VSCode.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.runtime.fileEncoding": {
          "default": "utf8",
          "enum": [
            "utf8",
            "ansi",
            "utf16le",
            "utf16be"
          ],
          "markdownDescription": "File encoding. The `ansi` option is only available under the `Windows` platform.",
          "markdownEnumDescriptions": [
            "",
            "",
            "",
            ""
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.runtime.meta": {
          "default": "${version} ${language} ${encoding}",
          "markdownDescription": "Format of the directory name of the meta files.",
          "scope": "resource",
          "type": "string"
        },
        "Lua.runtime.nonstandardSymbol": {
          "default": [],
          "items": {
            "enum": [
              "//",
              "/**/",
              "`",
              "+=",
              "-=",
              "*=",
              "/=",
              "%=",
              "^=",
              "//=",
              "|=",
              "&=",
              "<<=",
              ">>=",
              "||",
              "&&",
              "!",
              "!=",
              "continue"
            ],
            "type": "string"
          },
          "markdownDescription": "Supports non-standard symbols. Make sure that your runtime environment supports these symbols.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.runtime.path": {
          "default": [
            "?.lua",
            "?/init.lua"
          ],
          "items": {
            "type": "string"
          },
          "markdownDescription": "When using `require`, how to find the file based on the input name.\nSetting this config to `?/init.lua` means that when you enter `require 'myfile'`, `${workspace}/myfile/init.lua` will be searched from the loaded files.\nif `runtime.pathStrict` is `false`, `${workspace}/**/myfile/init.lua` will also be searched.\nIf you want to load files outside the workspace, you need to set `Lua.workspace.library` first.\n",
          "scope": "resource",
          "type": "array"
        },
        "Lua.runtime.pathStrict": {
          "default": false,
          "markdownDescription": "When enabled, `runtime.path` will only search the first level of directories, see the description of `runtime.path`.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.runtime.plugin": {
          "default": "",
          "markdownDescription": "Plugin path. Please read [wiki](https://github.com/LuaLS/lua-language-server/wiki/Plugins) to learn more.",
          "scope": "resource",
          "type": "string"
        },
        "Lua.runtime.pluginArgs": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Additional arguments for the plugin.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.runtime.special": {
          "additionalProperties": false,
          "default": {},
          "markdownDescription": "The custom global variables are regarded as some special built-in variables, and the language server will provide special support\nThe following example shows that 'include' is treated as' require '.\n```json\n\"Lua.runtime.special\" : {\n    \"include\" : \"require\"\n}\n```\n",
          "patternProperties": {
            ".*": {
              "default": "require",
              "enum": [
                "_G",
                "rawset",
                "rawget",
                "setmetatable",
                "require",
                "dofile",
                "loadfile",
                "pcall",
                "xpcall",
                "assert",
                "error",
                "type",
                "os.exit"
              ],
              "type": "string"
            }
          },
          "scope": "resource",
          "title": "special",
          "type": "object"
        },
        "Lua.runtime.unicodeName": {
          "default": false,
          "markdownDescription": "Allows Unicode characters in name.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.runtime.version": {
          "default": "Lua 5.4",
          "enum": [
            "Lua 5.1",
            "Lua 5.2",
            "Lua 5.3",
            "Lua 5.4",
            "LuaJIT"
          ],
          "markdownDescription": "Lua runtime version.",
          "markdownEnumDescriptions": [
            "",
            "",
            "",
            "",
            ""
          ],
          "scope": "resource",
          "type": "string"
        },
        "Lua.semantic.annotation": {
          "default": true,
          "markdownDescription": "Semantic coloring of type annotations.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.semantic.enable": {
          "default": true,
          "markdownDescription": "Enable semantic color. You may need to set `editor.semanticHighlighting.enabled` to `true` to take effect.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.semantic.keyword": {
          "default": false,
          "markdownDescription": "Semantic coloring of keywords/literals/operators. You only need to enable this feature if your editor cannot do syntax coloring.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.semantic.variable": {
          "default": true,
          "markdownDescription": "Semantic coloring of variables/fields/parameters.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.signatureHelp.enable": {
          "default": true,
          "markdownDescription": "Enable signature help.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.spell.dict": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Custom words for spell checking.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.type.castNumberToInteger": {
          "default": true,
          "markdownDescription": "Allowed to assign the `number` type to the `integer` type.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.type.weakNilCheck": {
          "default": false,
          "markdownDescription": "When checking the type of union type, ignore the `nil` in it.\n\nWhen this setting is `false`, the `number|nil` type cannot be assigned to the `number` type. It can be with `true`.\n",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.type.weakUnionCheck": {
          "default": false,
          "markdownDescription": "Once one subtype of a union type meets the condition, the union type also meets the condition.\n\nWhen this setting is `false`, the `number|boolean` type cannot be assigned to the `number` type. It can be with `true`.\n",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.window.progressBar": {
          "default": true,
          "markdownDescription": "Show progress bar in status bar.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.window.statusBar": {
          "default": true,
          "markdownDescription": "Show extension status in status bar.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.workspace.checkThirdParty": {
          "default": true,
          "markdownDescription": "Automatic detection and adaptation of third-party libraries, currently supported libraries are:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* LÖVR\n* skynet\n* Jass\n",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.workspace.ignoreDir": {
          "default": [
            ".vscode"
          ],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Ignored files and directories (Use `.gitignore` grammar).",
          "scope": "resource",
          "type": "array"
        },
        "Lua.workspace.ignoreSubmodules": {
          "default": true,
          "markdownDescription": "Ignore submodules.",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.workspace.library": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "In addition to the current workspace, which directories will load files from. The files in these directories will be treated as externally provided code libraries, and some features (such as renaming fields) will not modify these files.",
          "scope": "resource",
          "type": "array"
        },
        "Lua.workspace.maxPreload": {
          "default": 5000,
          "markdownDescription": "Max preloaded files.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.workspace.preloadFileSize": {
          "default": 500,
          "markdownDescription": "Skip files larger than this value (KB) when preloading.",
          "scope": "resource",
          "type": "integer"
        },
        "Lua.workspace.useGitIgnore": {
          "default": true,
          "markdownDescription": "Ignore files list in `.gitignore` .",
          "scope": "resource",
          "type": "boolean"
        },
        "Lua.workspace.userThirdParty": {
          "default": [],
          "items": {
            "type": "string"
          },
          "markdownDescription": "Add private third-party library configuration file paths here, please refer to the built-in [configuration file path](https://github.com/LuaLS/lua-language-server/tree/master/meta/3rd)",
          "scope": "resource",
          "type": "array"
        }
      }
    },
    "commands": [
      {
        "command": "lua.version",
        "title": "Print extension version"
      },
      {
        "command": "lua.update",
        "title": "Update lua-lsp"
      }
    ]
  },
  "devDependencies": {
    "@chemzqm/tsconfig": "^0.0.3",
    "@types/jest": "^29.4.0",
    "@types/node": "^18.14.0",
    "@types/tar": "^6.1.4",
    "@types/which": "^2.0.2",
    "@typescript-eslint/eslint-plugin": "^5.52.0",
    "@typescript-eslint/parser": "^5.52.0",
    "coc.nvim": "0.0.82",
    "eslint": "8.34.0",
    "eslint-config-josa-typescript": "^0.1.2",
    "jest": "^29.4.3",
    "rimraf": "^4.1.2",
    "ts-jest": "^29.0.5",
    "typescript": "^4.9.5"
  },
  "dependencies": {
    "tar": "^6.1.13",
    "tslib": "^2.5.0",
    "which": "^3.0.0"
  }
}
