{
  "name": "coc-calc",
  "version": "3.1.0",
  "description": "calculate extension for coc.nvim",
  "main": "lib/index.js",
  "keywords": [
    "coc.nvim",
    "calculator",
    "calc"
  ],
  "scripts": {
    "clean": "rimraf lib",
    "build": "node build.js",
    "dev": "node watch.js",
    "prepare": "yarn run clean && yarn run build",
    "test": "eslint src --ext .js,.ts"
  },
  "files": [
    "lib"
  ],
  "engines": {
    "coc": "^0.0.71"
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "Calc",
      "properties": {
        "calc.debug": {
          "type": "boolean",
          "default": false
        },
        "calc.priority": {
          "type": "integer",
          "default": 1000,
          "description": "Calc priority"
        },
        "calc.highlight": {
          "type": "boolean",
          "description": "Enable calc highlight",
          "default": true
        }
      }
    }
  },
  "license": "MIT",
  "author": "Weirong Xu <weirongxu.raidou@gmail.com>",
  "publisher": "weirongxu",
  "homepage": "https://github.com/weirongxu/coc-calc",
  "repository": "https://github.com/weirongxu/coc-calc.git",
  "devDependencies": {
    "@raidou/eslint-config-base": "^1.6.0",
    "@types/node": "^18.11.10",
    "@typescript-eslint/eslint-plugin": "^5.45.0",
    "@typescript-eslint/parser": "^5.45.0",
    "coc-helper": "^0.15.2",
    "coc.nvim": "^0.0.83-next.9",
    "editor-calc": "^2.1.2",
    "esbuild": "^0.15.16",
    "eslint": "^8.28.0",
    "prettier": "^2.8.0",
    "rimraf": "^3.0.2",
    "typescript": "^4.9.3",
    "vscode-languageserver-protocol": "^3.17.2",
    "vscode-languageserver-textdocument": "^1.0.7"
  }
}
