-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 898 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 898 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
31
32
33
34
{
"name": "aql",
"displayName": "openEHR AQL Language Support",
"description": "Visual Studio Code language support for openEHR Archetype Query Language (AQL)",
"icon": "images/icon.png",
"version": "0.9.1",
"publisher": "DIPSAS",
"repository":"https://github.com/DIPSAS/vscode-aql",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"AQL",
"Archetype Query Language",
"openEHR",
"DIPS"
],
"contributes": {
"languages": [{
"id": "aql",
"aliases": ["Archetype Query Language"],
"extensions": ["aql"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "aql",
"scopeName": "source.aql",
"path": "./syntaxes/aql.tmLanguage.json"
}]
}
}