{
    "name": "@zachkirsch/monaco-languageclient",
    "version": "0.16.0",
    "description": "Monaco Language client implementation",
    "author": "TypeFox GmbH (http://www.typefox.io)",
    "license": "MIT",
    "engines": {
        "vscode": "^1.50.0"
    },
    "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",
    "dependencies": {
        "glob-to-regexp": "^0.4.1",
        "vscode-jsonrpc": "6.0.0",
        "vscode-languageclient": "7.0.0",
        "vscode-languageserver-textdocument": "^1.0.1",
        "vscode-uri": "^3.0.2"
    },
    "scripts": {
        "prepare": "yarn run clean && yarn run compile",
        "compile": "tsc",
        "watch": "tsc -w",
        "clean": "rimraf lib",
        "prepublishOnly": "yarn run dist:amd",
        "dist:amd": "tsc --outDir dist/amd --module amd"
    },
    "workspaces": [
        ".",
        "workspace-a",
        "workspace-b"
    ],
    "devDependencies": {
        "@types/glob-to-regexp": "^0.4.0"
    }
}
