-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.17 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
75
76
77
78
79
{
"version": "1.0.4",
"name": "nunjucks-package-for-vscode",
"displayName": "Nunjucks templating package",
"description": "A complete suite of snippets and extensions to use Nunjucks templating API.",
"publisher": "jontravens",
"icon": "images/nunjucks.png",
"homepage": "https://github.com/jontravens/nunjucks-package-vscode.git",
"repository": {
"type": "git",
"url": "https://github.com/jontravens/nunjucks-package-vscode.git.git"
},
"bugs": "https://github.com/jontravens/nunjucks-package-vscode",
"keywords": [
"nunjucks",
"njk",
"html",
"grammar",
"language",
"formatter"
],
"galleryBanner": {
"color": "#203510",
"theme": "dark"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Extension Packs"
],
"extensionPack": [
"okitavera.vscode-nunjucks-formatter"
],
"contributes": {
"languages": [
{
"id": "nunjucks",
"aliases": [
"Nunjucks",
"nunjucks"
],
"extensions": [
".nunjucks",
".nj",
".njk"
],
"configuration": "./languages/nunjucks.configuration.json"
}
],
"grammars": [
{
"language": "nunjucks",
"scopeName": "text.html.nunjucks",
"path": "./syntaxes/nunjucks.tmLanguage"
}
],
"snippets": [
{
"language": "nunjucks",
"path": "./snippets/builtin-filters.code-snippets"
},
{
"language": "nunjucks",
"path": "./snippets/misc.code-snippets"
},
{
"language": "nunjucks",
"path": "./snippets/global-functions.code-snippets"
},
{
"language": "nunjucks",
"path": "./snippets/tags.code-snippets"
}
]
}
}