-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 918 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
44
45
46
47
48
{
"name": "blazory",
"displayName": "Blazory",
"description": "Blazor Snippets that start with an y",
"icon": "images/blazory-icon.png",
"publisher": "BartVanHoey",
"repository": {
"type": "git",
"url": "https://github.com/bartvanhoey/Blazory.git"
},
"version": "0.0.326",
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Snippets"
],
"keywords": [
"Blazor",
".NET Core",
"Razor",
"C#",
"ASP.NET Core",
"Snippets"
],
"scripts": {
"deploy": "vsce publish --yarn"
},
"contributes": {
"snippets": [
{
"language": "aspnetcorerazor",
"path": "./snippets/razor.json"
},
{
"language": "razor",
"path": "./snippets/razor.json"
},
{
"language": "csharp",
"path": "./snippets/csharp.json"
}
]
},
"dependencies": {
"@vscode/vsce": "^2.21.1"
}
}