-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1012 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
34
35
{
"name": "vscode-language-server-template",
"displayName": "vscode-language-server-template",
"description": "A cleaner template for writing VS Code language server.",
"author": "Pine Wu <octref@gmail.com>",
"version": "0.0.1",
"publisher": "octref",
"scripts": {
"compile": "tsc -p tsconfig.json && tsc -p server/tsconfig.json",
"watch": "run-p watch-client watch-server",
"watch-client": "tsc -w -p tsconfig.json",
"watch-server": "tsc -w -p server/tsconfig.json",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"engines": {
"vscode": "^1.23.0"
},
"dependencies": {
"prettier": "^1.11.1",
"vscode-languageclient": "^4.0.0",
"vscode-languageserver-types": "^3.6.0"
},
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/clientMain",
"contributes": {},
"devDependencies": {
"@types/node": "^9.4.6",
"npm-run-all": "^4.1.3",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"vscode": "^1.1.11"
}
}