-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
104 lines (104 loc) · 2.42 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
{
"name": "mobileview",
"displayName": "MobileView",
"description": "Provides a responsive mobile view for testing mobile view of your apps and websites directly form vs code.",
"publisher": "cirlorm",
"version": "0.0.6",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/champ3oy/MobileView"
},
"author": {
"name": "Jonathan Selorm Akoto",
"email": "cirlorm6@gmail.com",
"url": "https://cirlorm.dev"
},
"keywords": [
"responsive",
"mobile view",
"browser",
"phone",
"iphone",
"iphone x",
"emulator",
"simulator"
],
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:mobileview.start",
"onCommand:startIphonex.start",
"onCommand:startPixel.start"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "mobileview.start",
"title": "Iphone X"
},
{
"command": "startIphonex.start",
"title": "Iphone 8"
},
{
"command": "startPixel.start",
"title": "Pixel 1"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "mobileView",
"title": "MobileView",
"icon": "media/phone.svg"
}
],
"panel": [
{
"id": "mobileViewIconP",
"title": "MobileView",
"icon": "media/phone.svg"
}
]
},
"views": {
"mobileView": [
{
"id": "screens",
"name": "Screen",
"contextualTitle": "MobileView",
"icon": "media/phone.svg"
}
]
},
"viewsWelcome": [
{
"view": "screens",
"contents": "Thanks for using MobileView [learn more](https://github.com/champ3oy/MobileView/).\n[Use iPhone X](command:mobileview.start)\n[Use iPhone 8](command:startIphonex.start)\n[Use Pixel 1](command:startPixel.start)"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"publish": "vsce publish -p mrc6oyyrrwvsmxvat2drndl4goyj77vzas3ghn3imuzhpakxi77a"
},
"devDependencies": {
"@types/vscode": "^1.51.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.11.7",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0"
}
}