-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 928 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": "dsdl",
"displayName": "DSDL",
"description": "Data Structure Description Language",
"version": "1.0.1",
"publisher": "uavcan",
"author": {
"name": "UAVCAN organization - UAVCAN development team"
},
"icon": "images/uavcan.png",
"readme": "README.md",
"repository": {
"type" : "git",
"url" : "https://github.com/UAVCAN/vscode-dsdl.git"
},
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "dsdl",
"aliases": ["DSDL", "dsdl"],
"extensions": [".uavcan", ".dsdl"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "dsdl",
"scopeName": "source.dsdl",
"path": "./syntaxes/dsdl.tmLanguage.json"
}]
}
}