-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
33 lines (33 loc) · 842 Bytes
/
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
{
"name": "diagnostic-languageserver",
"version": "1.15.0",
"description": "diagnostic language server",
"main": "./lib/index.js",
"repository": "[email protected]:iamcco/diagnostic-languageserver.git",
"author": "iamcco <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -w -p ./"
},
"bin": {
"diagnostic-languageserver": "./bin/index.js"
},
"dependencies": {
"commander": "^5.1.0",
"find-up": "^4.1.0",
"lodash": "^4.17.15",
"rxjs": "^6.5.5",
"tempy": "^0.7.1",
"tslib": "^1.11.2",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^2.1.1"
},
"devDependencies": {
"@types/lodash": "^4.14.150",
"@types/node": "^11.11.3",
"ignore": "^5.1.8",
"typescript": "^3.8.3"
}
}