-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "vscode-bolt-language",
"displayName": "Bolt",
"description": "Firebase security rules language Bolt support for vscode",
"icon": "images/flash.png",
"version": "1.0.1",
"publisher": "smkamranqadri",
"homepage": "https://github.com/smkamranqadri/vscode-bolt-language/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/smkamranqadri/vscode-bolt-language.git"
},
"galleryBanner": {
"color": "#333",
"theme": "dark"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [
{
"id": "bolt",
"aliases": [
"Bolt",
"bolt"
],
"extensions": [
".bolt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "bolt",
"scopeName": "source.bolt",
"path": "./syntaxes/bolt.tmLanguage.json"
}
]
},
"__metadata": {
"id": "7cbb92c3-e47c-4809-bdfb-a5f7217d8b88",
"publisherDisplayName": "Muhammad Kamran",
"publisherId": "f7751943-f958-40c4-9f15-a69e113724dd"
}
}