-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tera",
"displayName": "Tera",
"description": "A powerful, easy-to-use template language based on Rust, inspired by Jinja2 and Django Templates.",
"version": "0.0.9",
"publisher": "karunamurti",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"keywords": [
"tera",
"rust",
"zola"
],
"main": "./lib/index.js",
"contributes": {
"languages": [
{
"id": "html",
"aliases": [
"HTML",
"HTML (Tera)"
],
"extensions": [
".html",
".htm",
".tera"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "html",
"scopeName": "source.tera",
"path": "./syntaxes/tera.json"
}
],
"snippets": [
{
"language": "html",
"path": "./snippets/tera.code-snippets.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/karuna/tera-vscode.git"
},
"galleryBanner": {
"color": "#888888",
"theme": "dark"
},
"homepage": "https://github.com/karuna/tera-vscode",
"bugs": {
"url": "https://github.com/karuna/tera-vscode/issues",
"email": "karuna.murti@gmail.com"
},
"icon": "images/logo.png",
"activationEvents": [
"onLanguage:tera"
],
"scripts": {},
"dependencies": {
"prettydiff": "^101.2.6"
},
"devDependencies": {
"@types/vscode": "^1.40.0"
}
}