forked from fabiospampinato/vscode-browser-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·104 lines (104 loc) · 2.63 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": "vscode-browser-refresh",
"displayName": "Browser Refresh",
"description": "Refresh the browser with a ⌘R, right from Code. No need to switch focus to it.",
"icon": "resources/logo-128x128.png",
"version": "1.1.5",
"license": "MIT",
"main": "out/extension.js",
"publisher": "fabiospampinato",
"activationEvents": [
"onCommand:browserRefresh.refresh",
"onCommand:browserRefresh.forceRefresh"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Browser Refresh - Configuration",
"properties": {
"browserRefresh.browser": {
"type": "string",
"description": "The browser to refresh",
"default": "Google Chrome"
},
"browserRefresh.delay": {
"type": "number",
"description": "Delay after which ⌘R will be sent to the browser",
"default": 0
},
"browserRefresh.focus": {
"type": "boolean",
"description": "Keep the focus on the browser",
"default": false
}
}
},
"commands": [
{
"command": "browserRefresh.refresh",
"title": "Browser: Refresh"
},
{
"command": "browserRefresh.forceRefresh",
"title": "Browser: Force Refresh"
}
],
"keybindings": [
{
"command": "browserRefresh.refresh",
"key": "ctrl+r",
"mac": "cmd+r"
},
{
"command": "browserRefresh.forceRefresh",
"key": "shift+ctrl+r",
"mac": "shift+cmd+r"
}
]
},
"scripts": {
"vscode:prepublish": "rm -rf out && webpack --mode production",
"publish": "vsce publish && npm publish",
"compile": "webpack --mode development",
"compile:watch": "webpack --mode development --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"bugs": {
"url": "https://github.com/fabiospampinato/vscode-browser-refresh/issues"
},
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/vscode-browser-refresh.git"
},
"engines": {
"vscode": "^1.15.0"
},
"keywords": [
"vscode",
"vsc",
"extension",
"browser",
"refresh"
],
"categories": [
"Other"
],
"dependencies": {
"@types/node": "^10.12.8",
"applescript": "^1.0.0",
"lodash": "^4.17.4",
"pify": "^3.0.0"
},
"devDependencies": {
"ts-loader": "^5.2.1",
"typescript": "~2.4.1",
"vscode": "^1.1.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}