-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "galacticus-code",
"displayName": "Embedded XML/LaTeX in Galacticus",
"description": "Highlight Embedded XML and LaTeX in Galacticus source",
"version": "0.1.1",
"publisher": "GalacticusOrg",
"icon": "docs/logo.png",
"engines": {
"vscode": "^1.19.0"
},
"galleryBanner": {
"color": "#dedede",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/galacticusorg/galacticus-code"
},
"bugs": {
"url": "https://github.com/galacticusorg/galacticus-code/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"fortran"
],
"extensionDependencies": [
"fortran-lang.linter-gfortran"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.fortran.free"
],
"scopeName": "inline.galacticus",
"path": "./syntaxes/galacticus-embedded.json",
"embeddedLanguages": {
"meta.embedded.xml": "xml",
"meta.embedded.latex": "latex"
}
}
]
}
}