-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
124 lines (124 loc) · 3.66 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "emulate",
"displayName": "Android iOS Emulator",
"description": "Run Android emulator and iOS simulator easily from VScode!",
"version": "1.7.0",
"publisher": "DiemasMichiels",
"author": {
"name": "Diemas Michiels"
},
"icon": "images/ic_emulator.png",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Debuggers",
"Other"
],
"keywords": [
"Emulator",
"Android",
"iOS",
"Simulator"
],
"activationEvents": [
"onCommand:emulator.start"
],
"main": "./src/extension",
"contributes": {
"commands": [
{
"command": "emulator.start",
"title": "Emulator",
"icon": {
"light": "./images/EmulatorRightTopAction_16x.svg",
"dark": "./images/EmulatorRightTopAction_16x_dark.svg"
}
}
],
"keybindings": [
{
"key": "ctrl+alt+e",
"mac": "cmd+alt+e",
"command": "emulator.start"
}
],
"menus": {
"editor/title": [
{
"command": "emulator.start",
"when": "config.emulator.hasEditorTitleIcon",
"group": "navigation"
}
]
},
"configuration": {
"title": "Emulator Configuration",
"properties": {
"emulator.simulatorPath": {
"type": "string",
"default": "",
"description": "The absolute path of your Xcode simulator directory containing the Simulator.app script. Leaving it empty will automatically select the path with xcode-select -p."
},
"emulator.emulatorPath": {
"type": "string",
"default": "~/Library/Android/sdk/emulator",
"description": "The absolute path of your Android emulator directory containing the emulator script."
},
"emulator.emulatorPathMac": {
"type": "string",
"default": "",
"description": "The absolute path of the Android emulator directory on your MacBook containing the emulator script."
},
"emulator.emulatorPathLinux": {
"type": "string",
"default": "",
"description": "The absolute path of the Android emulator directory on your Linux containing the emulator script."
},
"emulator.emulatorPathWindows": {
"type": "string",
"default": "",
"description": "The absolute path of the Android emulator directory on your Windows containing the emulator script."
},
"emulator.emulatorPathWSL": {
"type": "string",
"default": "",
"description": "The absolute path of the Android emulator directory when running in WSL. (e.g. /mnt/c/Users/username/AppData/Local/Android/Sdk/emulator)"
},
"emulator.androidColdBoot": {
"type": "boolean",
"default": false,
"description": "Show an option to cold boot android devices."
},
"emulator.androidExtraBootArgs": {
"type": "string",
"default": "",
"description": "Add extra boot args to the android emulator."
},
"emulator.hasEditorTitleIcon": {
"type": "boolean",
"default": true,
"description": "Show the emulator icon in the editor bar on the top right."
}
}
}
},
"scripts": {
"lint": "prettier --write ."
},
"devDependencies": {
"prettier": "^2.3.2"
},
"dependencies": {
"child_process": "1.0.2"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/DiemasMichiels/Emulator.git"
},
"homepage": "https://github.com/DiemasMichiels/Emulator",
"bugs": {
"url": "https://github.com/DiemasMichiels/Emulator/issues"
}
}