-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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": "firebase-bolt",
"displayName": "Firebase Bolt",
"description": "Firebase Bolt syntax highlight",
"version": "0.1.3",
"publisher": "thadeuluz",
"icon": "images/flash.png",
"repository": {
"type": "git",
"url": "git+https://github.com/ThadeuLuz/vsce-firebase-bolt.git"
},
"engines": {
"vscode": "^1.10.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"
}
],
"snippets": [
{
"language": "bolt",
"path": "./snippets/bolt.json"
}
]
}
}