-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.31 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
79
80
81
82
83
84
85
86
87
{
"name": "vscode-open-in-browsers",
"displayName": "Open in Browsers",
"publisher": "fabiospampinato",
"repository": "github:fabiospampinato/vscode-open-in-browsers",
"description": "Adds some commands for opening the current file or project in any browser you like, even all of them simultaneously.",
"icon": "resources/logo-128x128.png",
"version": "3.0.2",
"main": "dist/index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Open in Browsers - Configuration",
"properties": {
"openInBrowsers.browser": {
"type": "string",
"description": "Browser opened via \"Open in Default Browser\"",
"default": "chrome"
},
"openInBrowsers.browsers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Browsers opened via \"Open in All Browsers\"",
"default": [
"chrome",
"firefox",
"safari",
"edge"
]
}
}
},
"commands": [
{
"command": "openInBrowsers.open",
"title": "Open in Browser..."
},
{
"command": "openInBrowsers.openDefault",
"title": "Open in Default Browser"
},
{
"command": "openInBrowsers.openAll",
"title": "Open in All Browsers"
}
]
},
"scripts": {
"bundle:dev": "tsex bundle --external vscode --format cjs --platform node --no-declare",
"bundle:prod": "tsex bundle --external vscode --format cjs --platform node --minify",
"clean": "tsex clean",
"compile": "tsex compile",
"debug": "code --extensionDevelopmentPath $PWD --inspect-extensions 9222",
"package": "vsce package",
"prepublishOnly": "scex -bs clean bundle:prod",
"vscode:prepublish": "scex -bs clean bundle:prod",
"dev": "scex -bs bundle:dev debug",
"prod": "scex -bs bundle:prod debug"
},
"categories": [
"Other"
],
"engines": {
"vscode": "^1.87.0"
},
"keywords": [
"vscode",
"vsc",
"extension",
"open",
"in",
"browser",
"browsers"
],
"dependencies": {
"vscode-extras": "^1.6.0"
},
"devDependencies": {
"@types/vscode": "^1.87.0",
"esbuild": "0.20.1",
"scex": "^1.1.0",
"tsex": "^3.2.0",
"typescript": "^5.4.2"
}
}