-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.56 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "better-nunjucks",
"displayName": "Better Nunjucks",
"description": "Better Nunjucks Syntax Highlighting and Snippets for Visual Studio Code",
"version": "0.3.1",
"publisher": "ginfuru",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#161821",
"theme": "dark"
},
"keywords": [
"nunjucks",
"njk",
"html",
"markdown",
"11ty",
"eleventy",
"grammar",
"language"
],
"homepage": "https://github.com/edheltzel/nunjucks-for-visual-studio-code",
"repository": {
"type": "git",
"url": "https://github.com/edheltzel/nunjucks-for-visual-studio-code.git"
},
"bugs": "https://github.com/edheltzel/nunjucks-for-visual-studio-code",
"contributes": {
"languages": [
{
"id": "nunjucks",
"configuration": "./src/language/nunjucks.language-configuration.json",
"aliases": [
"Nunjucks"
]
},
{
"id": "html",
"configuration": "./src/language/html.language-configuration.json",
"extensions": [
".njk",
".nunjucks"
]
},
{
"id": "markdown",
"configuration": "./src/language/markdown.language-configuration.json",
"extensions": [
".md"
]
}
],
"grammars": [
{
"language": "nunjucks",
"scopeName": "source.njk",
"path": "./src/syntaxes/nunjucks.tmLanguage.json",
"injectTo": [
"text.html.markdown",
"text.html"
]
},
{
"language": "nunjucks",
"scopeName": "text.html.njk",
"path": "./src/syntaxes/nunjucks-html.tmLanguage.json"
}
],
"snippets": [
{
"language": "html",
"path": "./src/snippets/nunjucks-snippets.json"
},
{
"language": "markdown",
"path": "./src/snippets/nunjucks-snippets.json"
},
{
"language": "nunjucks",
"path": "./src/snippets/nunjucks-snippets.json"
}
]
},
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0",
"devDependencies": {
"dotenv": "^16.4.5"
},
"scripts": {
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"release": "gh release create v$npm_package_version --generate-notes --latest",
"ovsx": "node ovsx.js",
"publish": "vsce publish"
}
}