-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.19 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fhirpath-lang",
"displayName": "Fhirpath Language",
"description": "Syntax highlight for fhirpath (embedded into .yaml, .fsh)",
"version": "0.3.1",
"publisher": "beda-software",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#eef9ff",
"theme": "light"
},
"engines": {
"vscode": "^1.78.0"
},
"repository": {
"url": "https://github.com/beda-software/vscode-fhirpath"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"keywords": [
"fhirpath",
"yaml",
"fsh",
"fhir",
"jute"
],
"homepage": "https://github.com/beda-software/vscode-fhirpath",
"bugs": {
"url": "https://github.com/beda-software/vscode-fhirpath/issues"
},
"contributes": {
"languages": [
{
"id": "fhirpath",
"aliases": [
"fhirpath"
],
"extensions": [
".fhirpath"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fhirpath",
"scopeName": "source.fhirpath",
"path": "./syntaxes/fhirpath.tmLanguage.json",
"injectTo": [
"source.fhirpath"
]
},
{
"scopeName": "source.yaml-with-fhirpath",
"path": "./syntaxes/yaml-with-fhirpath.tmLanguage.json",
"injectTo": [
"source.yaml"
],
"embeddedLanguages": {
"meta.embedded.block.expression": "fhirpath",
"meta.embedded.inline.expression": "fhirpath"
}
},
{
"scopeName": "source.fsh-with-fhirpath",
"path": "./syntaxes/fsh-with-fhirpath.tmLanguage.json",
"injectTo": [
"source.fsh"
],
"embeddedLanguages": {
"meta.embedded.block.expression": "fhirpath",
"meta.embedded.inline.expression": "fhirpath"
}
},
{
"scopeName": "source.jute-with-fhirpath",
"path": "./syntaxes/jute-with-fhirpath.tmLanguage.json",
"injectTo": [
"source.yaml"
],
"embeddedLanguages": {
"meta.embedded.block.expression": "fhirpath",
"meta.embedded.inline.expression": "fhirpath"
}
}
]
}
}