{
  "name": "coc-highlight",
  "version": "2.0.4",
  "description": "Highlight extension for coc.nvim",
  "main": "lib/index.js",
  "publisher": "chemzqm",
  "keywords": [
    "coc.nvim",
    "highlight",
    "colors"
  ],
  "engines": {
    "coc": "^0.0.82"
  },
  "scripts": {
    "prepare": "node esbuild.js"
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "Highlight",
      "properties": {
        "highlight.trace": {
          "type": "string",
          "default": "messages",
          "description": "Trace level for colors highlight.",
          "enum": [
            "off",
            "messages",
            "verbose"
          ]
        },
        "highlight.disableLanguages": {
          "type": "array",
          "default": [],
          "items": {
            "type": "string"
          },
          "description": "List of filetypes to ignore.",
          "scope": "application"
        },
        "highlight.document.enable": {
          "type": "boolean",
          "default": true,
          "description": "Set to false disable document highlight of current symbol, reload coc.nvim required on change",
          "scope": "application"
        },
        "highlight.colors.enable": {
          "type": "boolean",
          "default": true,
          "description": "Set to false to disable color highlight, reload coc.nvim required on change",
          "scope": "application"
        },
        "highlight.colorNames.enable": {
          "type": "boolean",
          "default": true,
          "description": "Set to false to disable highlight of color names.",
          "scope": "application"
        }
      }
    }
  },
  "author": "chemzqm@gmail.com",
  "license": "MIT",
  "devDependencies": {
    "@chemzqm/tsconfig": "^0.0.3",
    "@types/color": "^3.0.3",
    "@types/color-name": "^1.1.1",
    "@types/debounce": "^3.0.0",
    "@types/node": "^14.17",
    "coc.nvim": "^0.0.83-next.7",
    "color": "^4.2.3",
    "color-name": "^1.1.4",
    "debounce": "^1.2.0",
    "tslib": "^1.9.3",
    "esbuild": "^0.15.9",
    "vscode-languageserver-protocol": "^3.15.0-next.4"
  },
  "dependencies": {}
}
