forked from ciena-blueplanet/vscode-ember-colorizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 917 Bytes
/
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
{
"name": "vsc-ember-frost",
"displayName": "Ember Colorizer and Theme",
"description": "Colorize Ember syntax and Handlebars. Along with a theme made specifcally for the colorizer",
"version": "0.0.1",
"publisher": "Eric White",
"homepage": "https://github.com/ciena-blueplanet/vscode-ember-colorizer",
"engines": {
"vscode": "^0.10.10"
},
"extensionDependencies": [
"handlebars",
"dzannotti.vscode-babel-coloring"
],
"contributes": {
"grammars": [{
"label": "Handlebars (Ember)",
"language": "handlebars",
"scopeName": "text.html.handlebars",
"path": "./syntaxes/handlebars.tmLanguage"
}],
"themes": [
{
"label": "Ember Frost",
"uiTheme": "vs-dark",
"path": "./themes/ember.tmTheme"
}
]
}
}