-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
{
"name": "logcat",
"displayName": "Logcat",
"description": "View logcat from android devices in VSCode",
"version": "0.0.7",
"publisher": "abhiagr",
"galleryBanner": {
"color": "#d7c797",
"theme": "light"
},
"icon": "images/logcat.gif",
"engines": {
"vscode": "^0.10.1"
},
"bugs": {
"url": "https://github.com/agrabhi/logcat/issues",
"email":"[email protected]"
},
"categories": [
"Other"
],
"homepage": "https://github.com/agrabhi/logcat/blob/master/README.md",
"keywords": [
"Android",
"Logcat",
"Android Logcat",
"view logcat",
"Do More"
],
"repository": {
"type": "git",
"url": "https://github.com/agrabhi/logcat.git"
},
"activationEvents": [
"onCommand:logcat.startCapture",
"onCommand:logcat.endCapture",
"onCommand:logcat.clear"
],
"main": "./logcat",
"contributes": {
"commands": [
{
"command": "logcat.startCapture",
"title": "Start Logcat"
},
{
"command": "logcat.endCapture",
"title": "End Logcat"
},
{
"command": "logcat.clear",
"title": "Clear Logcat"
}
],
"keybindings": [
{
"command": "logcat.startCapture",
"key": "ctrl+l ctrl+s"
},
{
"command": "logcat.endCapture",
"key": "ctrl+l ctrl+e"
},
{
"command": "logcat.clear",
"key": "ctrl+l ctrl+c"
}
],
"configuration": {
"title": "Logcat Configuration",
"properties": {
"logcat.directory": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the folder path where logcat files will be created intially."
}
}
}
},
"devDependencies": {
"vscode": "0.10.x"
}
}