-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 759 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 759 Bytes
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
{
"name": "vscode-a2l",
"publisher": "SoftwareApe",
"repository": {
"type": "git",
"url": "https://github.com/SoftwareApe/vscode-a2l.git"
},
"displayName": "A2L",
"description": "A2L language support",
"version": "0.3.1",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "a2l",
"aliases": ["A2L", "a2l"],
"extensions": [".a2l"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "a2l",
"scopeName": "source.a2l",
"path": "./syntaxes/a2l.tmLanguage.json"
}]
}
}