-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 934 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
{
"name": "jsonnet-language",
"displayName": "Jsonnet Language Support",
"description": "Provides language support for Jsonnet",
"version": "1.0.0",
"publisher": "liamdawson",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/liamdawson/vscode-jsonnet-language.git"
},
"keywords": [
"jsonnet"
],
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "jsonnet",
"aliases": ["Jsonnet", "jsonnet"],
"extensions": [".jsonnet",".libsonnet"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "jsonnet",
"scopeName": "source.jsonnet",
"path": "./syntaxes/jsonnet.tmLanguage.json"
}]
}
}