forked from xiaofanger/monaco-java-languageserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "monaco-languageclient",
"version": "0.9.0",
"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": "^7.0.12",
"monaco-editor": "^0.14.3",
"monaco-editor-core": "^0.14.6",
"rimraf": "^2.6.2",
"typescript": "^3.0.1",
"vscode": "^1.1.18"
},
"dependencies": {
"glob": "^7.1.3",
"glob-to-regexp": "^0.3.0",
"vscode-base-languageclient": "4.4.0",
"vscode-jsonrpc": "^3.6.2",
"vscode-uri": "^1.0.5"
},
"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"
}
}