{
  "name": "coc-kotlin-dev",
  "version": "1.0.1",
  "description": "CoC extension to Kotlin language",
  "author": "Ederson Ferreira <edersondeveloper@gmail.com>",
  "license": "MIT",
  "main": "lib/index.js",
  "keywords": [
    "coc.nvim"
  ],
  "engines": {
    "coc": "^0.0.77"
  },
  "scripts": {
    "lint": "eslint src --ext ts",
    "clean": "rimraf lib",
    "watch": "webpack --watch",
    "build": "webpack",
    "prepare": "npm-run-all clean build"
  },
  "prettier": {
    "singleQuote": true,
    "printWidth": 120,
    "semi": true
  },
  "devDependencies": {
    "@types/node": "^14.6.0",
    "@typescript-eslint/eslint-plugin": "^3.9.1",
    "@typescript-eslint/parser": "^3.9.1",
    "coc.nvim": "^0.0.77",
    "eslint": "^7.7.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.4",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.2",
    "ts-loader": "^8.0.2",
    "typescript": "^3.9.7",
    "webpack": "^4.44.1",
    "webpack-cli": "^3.3.12"
  },
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "coc-kotlin configuration",
      "properties": {
        "coc-kotlin.enabled": {
          "type": "boolean",
          "default": true,
          "description": "Enable coc-kotlin extension"
        }
      }
    },
    "commands": [
      {
        "command": "coc-kotlin.Command",
        "title": "coc-kotlin command title"
      }
    ]
  }
}
