{
  "name": "coc-class-css",
  "version": "1.0.11",
  "description": "CSS class completions in html markup everywhere",
  "main": "lib/index.js",
  "repository": "https://github.com/Softmotions/coc-class-css.git",
  "author": "Anton Adamansky <adamansky@gmail.com>",
  "license": "MIT",
  "private": false,
  "keywords": [
    "coc.nvim",
    "vim",
    "nvim",
    "neovim",
    "css",
    "html"
  ],
  "engines": {
    "coc": "^0.0.82"
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "coc-class-css configuration",
      "properties": {
        "coc-class-css.enabled": {
          "type": "boolean",
          "scope": "application",
          "default": true,
          "description": "Enable coc-class-css extension"
        },
        "coc-class-css.languages": {
          "type": "array",
          "scope": "application",
          "description": "List of languages where css class completion enabled",
          "default": [
            "html",
            "svelte",
            "vue",
            "javascriptreact"
          ]
        },
        "coc-class-css.cssRoots": {
          "type": "array",
          "scope": "resource",
          "description": "List of local css/scss files for class suggestions.",
          "default": [
            "index.css"
          ]
        }
      }
    }
  },
  "scripts": {
    "lint": "eslint src --ext ts",
    "clean": "rimraf lib",
    "watch": "node esbuild.js --watch",
    "prepare": "NODE_ENV=production node esbuild.js",
    "build": "NODE_ENV=production node esbuild.js"
  },
  "devDependencies": {
    "@types/node": "22.9.0",
    "@typescript-eslint/eslint-plugin": "^8.13.0",
    "@typescript-eslint/parser": "^8.13.0",
    "coc.nvim": "^0.0.83-next.9",
    "esbuild": "^0.24.0",
    "eslint": "^9.14.0",
    "find-up": "^7.0.0",
    "node-fetch": "^3.3.2",
    "postcss": "^8.4.47",
    "postcss-at-rules-variables": "^0.3.0",
    "postcss-import": "^16.1.0",
    "postcss-nested": "^7.0.2",
    "postcss-nesting": "^13.0.1",
    "postcss-safe-parser": "^7.0.1",
    "postcss-scss": "^4.0.9",
    "postcss-simple-vars": "^7.0.1",
    "prettier": "^3.3.3",
    "rimraf": "^6.0.1",
    "tslib": "^2.8.1",
    "typescript": "^5.6.3"
  }
}