-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
116 lines (116 loc) · 3.22 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
{
"name": "open-html-in-browser",
"displayName": "Open In Default Browser",
"description": "A VSCode extension to fast open html file in browser",
"version": "2.1.11",
"main": "./dist/extension.js",
"scripts": {
"dev": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js",
"test": "node ./dist/runTest.js",
"pub": "npm run build && vsce publish",
"pack": "npm run build && vsce package"
},
"publisher": "peakchen90",
"engines": {
"vscode": "^1.38.1"
},
"license": "MIT",
"icon": "public/icon.jpg",
"activationEvents": [
"onCommand:openInDefaultBrowser.openInDefaultBrowser"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "openInDefaultBrowser.openInDefaultBrowser",
"title": "%openInDefaultBrowser.title%"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == html || resourceLangId == xml || resourceExtname == .pdf",
"command": "openInDefaultBrowser.openInDefaultBrowser",
"group": "1_modification"
}
],
"explorer/context": [
{
"when": "resourceLangId == html || resourceLangId == xml || resourceExtname == .pdf",
"command": "openInDefaultBrowser.openInDefaultBrowser",
"group": "1_modification"
}
],
"touchBar": [
{
"when": "resourceLangId == html || resourceLangId == xml || resourceExtname == .pdf",
"command": "openInDefaultBrowser.openInDefaultBrowser"
}
]
},
"keybindings": [
{
"when": "resourceLangId == html || resourceLangId == xml || resourceExtname == .pdf",
"command": "openInDefaultBrowser.openInDefaultBrowser",
"key": "ctrl+1",
"mac": "cmd+1"
}
],
"configuration": {
"title": "Open In Default Browser",
"properties": {
"openInDefaultBrowser.run.openWithLocalHttpServer": {
"type": "boolean",
"default": true,
"description": "%openInDefaultBrowser.openWithLocalHttpServer%"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/peakchen90/vscode-open-in-default-browser.git"
},
"bugs": {
"url": "https://github.com/peakchen90/vscode-open-in-default-browser/issues"
},
"keywords": [
"open",
"html",
"default",
"browser",
"chrome",
"http",
"local server"
],
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^15.6.0",
"@types/vscode": "1.38.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"builtin-modules": "^3.2.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"rollup": "^2.48.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^4.2.4",
"vscode-test": "^1.5.2"
},
"dependencies": {
"art-template": "^4.13.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-art-template": "^1.0.1",
"getport": "^0.1.0",
"open": "^8.0.9",
"serve-favicon": "^2.5.0"
}
}