vscode-ebnf

EBNF for Visual Studio Code
Mirror of https://github.com/Jamozed/vscode-ebnf
git clone http://git.omkov.net/vscode-ebnf
Log | Tree | Refs | README | LICENCE | Download

vscode-ebnf/package.json (42 lines, 913 B) -rw-r--r-- file download

3dfb2cc Jamozed 2021-06-13 21:07:36
0
{
3dfb2cc Jamozed 2021-06-13 21:07:36
1
	"name": "vscode-ebnf",
e0ad0c6 Jamozed 2022-11-22 16:13:08
2
	"version": "1.0.5",
3dfb2cc Jamozed 2021-06-13 21:07:36
3
	"publisher": "OMKOV",
3dfb2cc Jamozed 2021-06-13 21:07:36
4
	"engines": { "vscode": "^1.0.0" },
dd4fced Jamozed 2022-03-06 17:28:12
5
	"license": "MIT",
3dfb2cc Jamozed 2021-06-13 21:07:36
6
	"displayName": "EBNF",
49d702e Jamozed 2021-06-13 22:13:20
7
	"description": "EBNF for Visual Studio Code",
3dfb2cc Jamozed 2021-06-13 21:07:36
8
	"categories": [ "Programming Languages" ],
c0ee090 Jamozed 2021-06-13 22:02:20
9
	"keywords": [ "bnf", "ebnf" ],
3dfb2cc Jamozed 2021-06-13 21:07:36
10
	"contributes": {
3dfb2cc Jamozed 2021-06-13 21:07:36
11
		"languages": [
3dfb2cc Jamozed 2021-06-13 21:07:36
12
			{
3dfb2cc Jamozed 2021-06-13 21:07:36
13
				"id": "ebnf",
3dfb2cc Jamozed 2021-06-13 21:07:36
14
				"extensions": [ ".ebnf" ],
3dfb2cc Jamozed 2021-06-13 21:07:36
15
				"aliases": [ "EBNF" ],
3dfb2cc Jamozed 2021-06-13 21:07:36
16
				"configuration": "./language-configuration.json"
3dfb2cc Jamozed 2021-06-13 21:07:36
17
			}
3dfb2cc Jamozed 2021-06-13 21:07:36
18
		],
3dfb2cc Jamozed 2021-06-13 21:07:36
19
		"grammars": [
3dfb2cc Jamozed 2021-06-13 21:07:36
20
			{
3dfb2cc Jamozed 2021-06-13 21:07:36
21
				"language": "ebnf",
3dfb2cc Jamozed 2021-06-13 21:07:36
22
				"scopeName": "text.ebnf",
3dfb2cc Jamozed 2021-06-13 21:07:36
23
				"path": "./syntaxes/ebnf.tmLanguage.json"
ad4a2a8 Drew Youngwerth 2022-11-21 19:04:44
24
			},
ad4a2a8 Drew Youngwerth 2022-11-21 19:04:44
25
			{
3985c5a Jamozed 2023-05-15 17:09:51
26
				"scopeName": "markdown.ebnf.codeblock",
3985c5a Jamozed 2023-05-15 17:09:51
27
				"path": "./syntaxes/ebnf.mdCodeblock.json",
3985c5a Jamozed 2023-05-15 17:09:51
28
				"injectTo": [ "text.html.markdown" ],
3985c5a Jamozed 2023-05-15 17:09:51
29
				"embeddedLanguages": {
3985c5a Jamozed 2023-05-15 17:09:51
30
					"meta.embedded.block.ebnf": "ebnf"
3985c5a Jamozed 2023-05-15 17:09:51
31
				}
3985c5a Jamozed 2023-05-15 17:09:51
32
			}
3dfb2cc Jamozed 2021-06-13 21:07:36
33
		]
3dfb2cc Jamozed 2021-06-13 21:07:36
34
	},
d32a52c Jamozed 2021-06-13 22:05:03
35
	"icon": "icon.png",
1a1ef6c Jamozed 2021-06-13 21:09:37
36
	"repository": {
1a1ef6c Jamozed 2021-06-13 21:09:37
37
		"type": "git",
1a1ef6c Jamozed 2021-06-13 21:09:37
38
		"url": "https://github.com/Jamozed/vscode-ebnf"
1a1ef6c Jamozed 2021-06-13 21:09:37
39
	}
3dfb2cc Jamozed 2021-06-13 21:07:36
40
}
41