-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 897 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 897 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
35
36
37
38
39
{
"name": "elixir-tiny-ls",
"displayName": "ElixirTinyLS",
"description": "Additional Elixir language support for markdown code block and Croma",
"license": "MIT",
"version": "0.2.1",
"publisher": "irisTa56",
"repository": {
"type": "git",
"url": "https://github.com/irisTa56/elixir-tiny-ls.git"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "source.elixir-croma",
"path": "./syntaxes/elixir-croma.json",
"injectTo": [
"source.elixir"
]
},
{
"scopeName": "markdown.elixir.codeblock",
"path": "./syntaxes/codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.elixir": "source.elixir"
}
}
]
}
}