-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 986 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "better-tera",
"publisher": "uncenter",
"displayName": "Better Tera",
"description": "Syntax highlighting for Tera; a powerful, easy-to-use template language inspired by Jinja2 and Django templates.",
"version": "1.0.1",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/uncenter/vscode-tera.git"
},
"contributes": {
"languages": [
{
"id": "tera",
"aliases": [
"Tera",
"tera"
],
"extensions": [
".tera"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tera",
"scopeName": "source.tera",
"path": "./syntaxes/tera.tmLanguage.json"
}
]
},
"devDependencies": {
"@vscode/vsce": "^3.2.0"
},
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}