-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.7 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.7 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vscode-open",
"displayName": "Open",
"description": "Opens the current file or folder with the default for the OS",
"version": "0.3.1",
"icon": "open.png",
"publisher": "sandcastle",
"engines": {
"vscode": "^1.67.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sandcastle/vscode-open"
},
"keywords": [
"open",
"file",
"folder",
"browser",
"display",
"vscode",
"default application"
],
"homepage": "https://github.com/sandcastle/vscode-open",
"bugs": {
"url": "https://github.com/sandcastle/vscode-open/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:workbench.action.files.openFileWithDefaultApplication"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "workbench.action.files.openFileWithDefaultApplication",
"title": "Open with default application"
}
],
"menus": {
"explorer/context": [
{
"command": "workbench.action.files.openFileWithDefaultApplication",
"group": "navigation",
"when": "(vscode-open:allowContextMenuForFile && !explorerResourceIsFolder) || (vscode-open:allowContextMenuForFolder && explorerResourceIsFolder)"
}
],
"commandPalette": [
{
"command": "workbench.action.files.openFileWithDefaultApplication",
"when": "resourceSet"
}
]
},
"keybindings": [
{
"command": "workbench.action.files.openFileWithDefaultApplication",
"key": "ctrl+alt+o",
"mac": "cmd+alt+o"
}
],
"configuration": {
"title": "Open with default application",
"properties": {
"vscode-open.contextMenu.showForFiles": {
"type": "boolean",
"default": true,
"description": "Whether to show `Open with default application` for files"
},
"vscode-open.contextMenu.showForFolders": {
"type": "boolean",
"default": false,
"description": "Whether to show `Open with default application` for folders"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile && npm run lint",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^12.20.55",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"typescript": "^4.9.5"
},
"dependencies": {
"open": "^8.4.2",
"vsce": "^1.103.1"
},
"volta": {
"node": "12.22.12"
}
}