forked from riganti/dotvvm-extension-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "dotvvm-for-visual-studio-code",
"displayName": "DotVVM for Visual Studio Code",
"description": "DotVVM support for VS Code",
"version": "0.0.1",
"publisher": "RIGANTI",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:dotvvm"
],
"main": "./extension",
"contributes": {
"languages": [
{
"id": "dotvvm",
"extensions": [
".dothtml",
".dotmaster",
".dotcontrol"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dotvvm",
"scopeName": "text.html.dotvvm",
"path": "./syntaxes/dotvvm.tmLanguage.json",
"embeddedLanguages": {
"text.html": "html"
}
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"vscode-css-languageservice": "^2.1.10",
"vscode-html-languageservice": "^2.0.10",
"vscode-languageclient": "^3.4.5",
"vscode-languageserver": "^3.4.3",
"vscode-languageserver-types": "^3.4.0",
"vscode-nls": "^2.0.2",
"vscode-uri": "^1.0.1",
"typescript": "^2.5.3"
},
"devDependencies": {
"vscode": "^1.1.5",
"mocha": "^4.0.1",
"eslint": "^4.8.0",
"@types/node": "^8.0.33",
"@types/mocha": "^2.2.43"
}
}