-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.76 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.76 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
{
"name": "AndroidLauncher",
"displayName": "Android Emulator Launcher",
"description": "Run Android emulator to test your apps from VSCode.",
"version": "0.0.7",
"author": {
"name": "Daniel Queiroz"
},
"publisher": "Dannark",
"icon": "images/logo_animated.gif",
"galleryBanner": {
"color": "#380e7f",
"theme": "dark"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "AndroidLauncher.runandroid",
"title": "Run Android Emulator"
},
{
"command": "AndroidLauncher.createandroid",
"title": "Create Android Emulator"
},
{
"command": "AndroidLauncher.deleteandroid",
"title": "Delete An Android Emulator"
},
{
"command": "AndroidLauncher.focuswindows",
"title": "Enable Dedicated Android Emulator"
},
{
"command": "AndroidLauncher.stopfocuswindows",
"title": "Disable Dedicated Android Emulator"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.45.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"node-window-manager": "^2.2.3"
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/Dannark/Android-Launcher-for-VSCode/blob/master/README.md",
"bugs": {
"url": "https://github.com/Dannark/Android-Launcher-for-VSCode/issues",
"email": "dqpontes@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Dannark/Android-Launcher-for-VSCode.git"
}
}