-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.36 KB
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
87
88
89
90
91
92
93
94
{
"name": "android-debug-bridge",
"displayName": "Android Debug Bridge",
"description": "Connects android devices wirelessly to debugging an app",
"version": "0.0.6",
"publisher": "sourcekod",
"author": {
"name": "Ertuğrul Yakın",
"email": "ertgrulll@outlook.com",
"url": "https://sourcekod.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ertgrulll/vscode_adb"
},
"bugs": {
"url": "https://github.com/ertgrulll/vscode_adb/issues",
"email": "ertgrulll@outlook.com"
},
"homepage": "https://github.com/ertgrulll/vscode_adb",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other",
"Debuggers"
],
"keywords": [
"android",
"debug",
"adb",
"wireless",
"wifi"
],
"activationEvents": [
"onStartupFinished",
"onCommand:android-debug-bridge.fastConnect",
"onCommand:android-debug-bridge.connect",
"onCommand:android-debug-bridge.devices",
"onCommand:android-debug-bridge.setDefaultDevice",
"onCommand:android-debug-bridge.restart",
"onCommand:android-debug-bridge.usb",
"onCommand:android-debug-bridge.setPort"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "android-debug-bridge.fastConnect",
"title": "ADB: Fast connect"
},
{
"command": "android-debug-bridge.connect",
"title": "ADB: Connect"
},
{
"command": "android-debug-bridge.devices",
"title": "ADB: Show devices"
},
{
"command": "android-debug-bridge.setDefaultDevice",
"title": "ADB: Set up a device to connect fast next time"
},
{
"command": "android-debug-bridge.restart",
"title": "ADB: Restart server"
},
{
"command": "android-debug-bridge.usb",
"title": "ADB: Restart server in usb mode"
},
{
"command": "android-debug-bridge.setPort",
"title": "ADB: Set default port"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.66.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "14.x",
"eslint": "^8.14.0",
"glob": "^8.0.1",
"mocha": "^9.2.2",
"typescript": "^4.6.4",
"@vscode/test-electron": "^2.1.3"
}
}