forked from kkonghao/snippet-dog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 981 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
49
50
51
52
{
"name": "snippets-plus",
"publisher": "heartacker",
"displayName": "C/C++ Snippets Plus",
"description": "Code snippets Plus for C/C++ with OutSide Code (外侧代码) Support",
"version": "1.4.0",
"author": {
"name": "heartacker"
},
"homepage": "https://github.com/heartacker/snippet-plus.git",
"repository": {
"type": "git",
"url": "https://github.com/heartacker/snippet-plus.git"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Snippets"
],
"keywords": [
"c",
"c++",
"c#",
"cpp",
"snippet",
"outside",
"surround"
],
"contributes": {
"snippets": [
{
"language": "c",
"path": "./snippets/c.json"
},
{
"language": "cpp",
"path": "./snippets/cpp.json"
}
]
},
"galleryBanner": {
"color": "#E6E0EA",
"theme": "dark"
},
"extensionKind": [
"ui",
"workspace"
],
"icon": "images/cpp.png",
"license": "Check in License in the root folder"
}