-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 947 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": "asam-osc2",
"displayName": "ASAM OpenSCENARIO",
"description": "Syntax highlighting support for the ASAM OpenSCENARIO scenario description language in Visual Studio Code",
"version": "0.2.0",
"author": "Benjamin Engel <[email protected]>",
"publisher": "BenjaminEngel",
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/engelben/openscenario2-vscode"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "osc",
"aliases": ["OpenSCENARIO", "osc"],
"extensions": ["osc"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "osc",
"scopeName": "source.osc",
"path": "./syntaxes/osc.tmLanguage.json"
}]
}
}