Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/handlebars/package.json
3290 views
1
{
2
"name": "handlebars",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "0.10.x"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin daaain/Handlebars grammars/Handlebars.json ./syntaxes/Handlebars.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"extensionKind": [
16
"ui",
17
"workspace"
18
],
19
"contributes": {
20
"languages": [
21
{
22
"id": "handlebars",
23
"extensions": [
24
".handlebars",
25
".hbs",
26
".hjs"
27
],
28
"aliases": [
29
"Handlebars",
30
"handlebars"
31
],
32
"mimetypes": [
33
"text/x-handlebars-template"
34
],
35
"configuration": "./language-configuration.json"
36
}
37
],
38
"grammars": [
39
{
40
"language": "handlebars",
41
"scopeName": "text.html.handlebars",
42
"path": "./syntaxes/Handlebars.tmLanguage.json"
43
}
44
],
45
"htmlLanguageParticipants": [
46
{
47
"languageId": "handlebars",
48
"autoInsert": true
49
}
50
]
51
},
52
"repository": {
53
"type": "git",
54
"url": "https://github.com/microsoft/vscode.git"
55
}
56
}
57
58