{
  "name": "coc-html-css-support",
  "version": "0.5.3",
  "description": "HTML id and class attribute completion for coc.nvim",
  "author": "yaegassy <yosstools@gmail.com>",
  "license": "MIT",
  "main": "lib/index.js",
  "keywords": [
    "coc.nvim",
    "vim",
    "neovim",
    "css",
    "html",
    "twig",
    "blade",
    "django",
    "nunjucks",
    "mustache",
    "angular",
    "react",
    "vue",
    "lit",
    "multi-root ready"
  ],
  "engines": {
    "coc": "^0.0.80"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yaegassy/coc-html-css-support"
  },
  "scripts": {
    "lint": "eslint src --ext ts",
    "clean": "rimraf lib",
    "watch": "node esbuild.js --watch",
    "build": "node esbuild.js",
    "prepare": "node esbuild.js"
  },
  "prettier": {
    "singleQuote": true,
    "printWidth": 120,
    "semi": true
  },
  "devDependencies": {
    "@types/css-tree": "^1.0.5",
    "@types/node": "^20.10.5",
    "@types/node-fetch": "^2.5.8",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "coc.nvim": "0.0.83-next.17",
    "css-tree": "1.1.2",
    "esbuild": "^0.16.17",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.2",
    "node-fetch": "^2.6.1",
    "prettier": "^3.1.1",
    "rimraf": "^5.0.1",
    "typescript": "5.3.3"
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "coc-html-css-support configuration",
      "properties": {
        "html-css-support.enable": {
          "type": "boolean",
          "default": true,
          "description": "Enable coc-html-css-support extension"
        },
        "html-css-support.enabledLanguages": {
          "type": "array",
          "description": "List of languages which suggestions are desired.",
          "default": [
            "html"
          ]
        },
        "html-css-support.styleSheets": {
          "type": "array",
          "description": "List of local or remote style sheets for suggestions.",
          "default": []
        }
      }
    },
    "commands": [
      {
        "command": "html-css-support.dispose",
        "title": "Clear cache and reload the stylesheet"
      },
      {
        "command": "html-css-support.customDataSetup",
        "title": "Setup `html.customData` to be used in the workspace"
      }
    ]
  },
  "dependencies": {},
  "packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}
