-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.75 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.75 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "windmillcode-open-related-files",
"displayName": "Windmillcode: Open Related Files",
"description": "",
"version": "1.87.2001",
"publisher": "windmillcode-publisher-0",
"icon": "images/logo.png",
"repository": {
"url": "https://github.com/WindMillCode/Open-Related-Files"
},
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Visualization",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"keywords": [
"open",
"files",
"folder",
"related",
"browser"
],
"contributes": {
"configuration": {
"title": "Windmillcode: Open Related Files",
"properties": {
"windmillcode-open-related-files": {
"type": "object",
"default": false,
"description": "default options object for the extension refer to the README.md on how to set it up"
},
"windmillcode-open-related-files.autoOpen": {
"type": "boolean",
"default": false,
"description": "if set to true auto opens all related files if switching to an unrelated false, false disables this"
},
"windmillcode-open-related-files.defaultOption": {
"type": "object",
"default": null,
"description": "the default option to be used in the workspace"
},
"windmillcode-open-related-files.resetLayout": {
"type": "boolean",
"default": false,
"description": "set to true to get a fresh start working on files set to false to open new related files along with the current files"
}
}
},
"commands": [
{
"command": "windmillcode-open-related-files.openRelatedFiles",
"title": "Windmillcode Open Related Files: Open"
},
{
"command": "windmillcode-open-related-files.setDefaultOption",
"title": "Windmillcode Open Related Files: Set Default Option"
},
{
"command": "windmillcode-open-related-files.toggleAutoOpen",
"title": "Windmillcode Open Related Files: Toggle Auto Open"
},
{
"command": "windmillcode-open-related-files.toggleResetLayout",
"title": "Windmillcode Open Related Files: Toggle Reset Layout"
}
],
"menus": {
"editor/context": [
{
"when": "editorTextFocus",
"command": "windmillcode-open-related-files.openRelatedFiles",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "windmillcode-open-related-files.setDefaultOption",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "windmillcode-open-related-files.toggleAutoOpen",
"group": "navigation"
},
{
"when": "editorTextFocus",
"command": "windmillcode-open-related-files.toggleResetLayout",
"group": "navigation"
}
],
"explorer/context": [
{
"when": "resourceFilename",
"command": "windmillcode-open-related-files.openRelatedFiles",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.26.0",
"typescript": "^5.1.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"fast-glob": "^3.3.2",
"gitignore-parser": "^0.0.2",
"semver": "^7.5.4",
"tar": "^6.1.15",
"tar.gz2": "^1.0.0",
"uuid": "^9.0.1",
"vsce": "^2.15.0"
}
}