-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
57 lines (57 loc) · 1.11 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
{
"name": "blazorsnippets",
"displayName": "Blazor Snippets",
"description": "Blazor (and Razor) Snippets for VS Code",
"icon": "images/logo.png",
"version": "1.5.1",
"publisher": "ScottSauber",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
],
"keywords": [
"ASP.NET Core",
"C#",
"Razor",
"Blazor",
"Snippets",
"Snippet",
".NET",
".NET Core",
"CSharp"
],
"repository": {
"type": "git",
"url": "https://github.com/scottsauber/BlazorSnippets"
},
"contributes": {
"snippets": [
{
"language": "csharp",
"path": "./snippets/csharp.json"
},
{
"language": "csharp",
"path": "./snippets/events.json"
},
{
"language": "aspnetcorerazor",
"path": "./snippets/razor.json"
},
{
"language": "razor",
"path": "./snippets/razor.json"
},
{
"language": "aspnetcorerazor",
"path": "./snippets/components.json"
},
{
"language": "razor",
"path": "./snippets/components.json"
}
]
}
}