{
  "name": "matrix-monaco-languageclient",
  "version": "0.9.0-matrix.2",
  "description": "Monaco Language client implementation",
  "author": "TypeFox GmbH (http://www.typefox.io)",
  "license": "MIT",
  "engines": {
    "vscode": "^1.25"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/TypeFox/monaco-languageclient.git"
  },
  "bugs": {
    "url": "https://github.com/TypeFox/monaco-languageclient/issues"
  },
  "main": "./lib/index.js",
  "typings": "./lib/index",
  "devDependencies": {
    "@types/node": "^10.14.7",
    "monaco-editor-core": "^0.17.0",
    "rimraf": "^2.6.3",
    "typescript": "^3.4.5",
    "vscode": "^1.1.34"
  },
  "dependencies": {
    "glob-to-regexp": "^0.4.1",
    "vscode-base-languageclient": "^4.4.0",
    "vscode-jsonrpc": "^4.0.0",
    "vscode-languageserver-protocol": "^3.14.1",
    "vscode-uri": "^1.0.6"
  },
  "scripts": {
    "prepare": "npm run update-vscode && npm run clean && npm run compile",
    "compile": "tsc",
    "watch": "tsc -w",
    "clean": "rimraf lib",
    "update-vscode": "node ./node_modules/vscode/bin/install",
    "prepublishOnly": "npm run dist:amd",
    "dist:amd": "tsc --outDir dist/amd --module amd"
  }
}
