-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 831 Bytes
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
{
"name": "includeguardsnippets",
"displayName": "IncludeGuardSnippets",
"pricing": "Free",
"author": {
"name": "Jakub Dębski",
"url": "https://hejok254.github.io/"
},
"publisher": "HEJOK254",
"description": "Snippets for C/C++ include guards",
"icon": "resources/garbage_icon_i_made_in_gimp.png",
"version": "1.0.1",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/HEJOK254/VSCode-IncludeGuardSnippets"
},
"bugs": {
"url": "https://github.com/HEJOK254/VSCode-IncludeGuardSnippets/issues"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"include",
"guard",
"header",
"cpp",
"c"
],
"contributes": {
"snippets": [
{
"language": "cpp",
"path": "./snippets/snippets.code-snippets"
}
]
}
}