-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
200 lines (200 loc) · 5.91 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
"name": "toggle-excluded-files",
"displayName": "Toggle Excluded Files",
"description": "Quickly toggles excluded (hidden) files visibility in the file explorer",
"version": "2.0.0",
"engines": {
"vscode": "^1.72.0"
},
"license": "SEE LICENSE IN LICENSE",
"publisher": "amodio",
"author": {
"name": "Eric Amodio",
"email": "[email protected]"
},
"homepage": "https://github.com/eamodio/vscode-toggle-excluded-files/blob/master/README.md",
"bugs": {
"url": "https://github.com/eamodio/vscode-toggle-excluded-files/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eamodio/vscode-toggle-excluded-files.git"
},
"main": "./dist/toggle-excluded.js",
"browser": "./dist/browser/toggle-excluded.js",
"icon": "images/icon.png",
"preview": false,
"badges": [
{
"url": "https://img.shields.io/badge/vscode--dev--community-toggle--excluded--files-blue.svg?logo=slack&labelColor=555555",
"href": "https://vscode-slack.amod.io",
"description": "Join us in the #toggle-excluded-files channel"
}
],
"sponsor": {
"url": "https://github.com/sponsors/eamodio"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#56098c",
"theme": "dark"
},
"keywords": [
"explorer",
"files",
"hidden",
"exclude",
"show",
"toggle"
],
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"configuration": [
{
"id": "toggleexcludedfiles",
"title": "Toggle Excluded Files",
"order": 10,
"properties": {
"toggleexcludedfiles.explorer.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Specifies whether to show the toggle button in the Explorer view",
"scope": "window"
},
"toggleexcludedfiles.statusBar.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Specifies whether to show the toggle button in the status bar",
"scope": "window"
},
"toggleexcludedfiles.outputLevel": {
"type": "string",
"default": "errors",
"enum": [
"silent",
"errors",
"verbose",
"debug"
],
"enumDescriptions": [
"Logs nothing",
"Logs only errors",
"Logs all errors, warnings, and messages",
"Logs all errors, warnings, and messages with extra context useful for debugging"
],
"markdownDescription": "Specifies how much (if any) output will be sent to the _Toggle Excluded_ output channel",
"scope": "window"
}
}
}
],
"commands": [
{
"command": "toggleexcludedfiles.show",
"title": "Show Excluded Files",
"category": "Files",
"icon": "$(eye)"
},
{
"command": "toggleexcludedfiles.restore",
"title": "Hide Excluded Files",
"category": "Files",
"icon": "$(eye-closed)"
},
{
"command": "toggleexcludedfiles.toggle",
"title": "Toggle Excluded Files",
"category": "Files"
}
],
"keybindings": [
{
"command": "toggleexcludedfiles.toggle",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a",
"when": "filesExplorerFocus"
}
],
"menus": {
"commandPalette": [
{
"command": "toggleexcludedfiles.show",
"when": "toggleexcludedfiles:loaded && !toggleexcludedfiles:toggled"
},
{
"command": "toggleexcludedfiles.restore",
"when": "toggleexcludedfiles:loaded && toggleexcludedfiles:toggled"
}
],
"view/title": [
{
"command": "toggleexcludedfiles.show",
"group": "navigation@21",
"when": "view == 'workbench.explorer.fileView' && toggleexcludedfiles:loaded && !toggleexcludedfiles:toggled && config.toggleexcludedfiles.explorer.enabled"
},
{
"command": "toggleexcludedfiles.restore",
"group": "navigation@21",
"when": "view == 'workbench.explorer.fileView' && toggleexcludedfiles:loaded && toggleexcludedfiles:toggled && config.toggleexcludedfiles.explorer.enabled"
}
]
}
},
"scripts": {
"analyze:bundle": "webpack --mode production --env analyzeBundle",
"analyze:deps": "webpack --env analyzeDeps",
"build": "webpack --mode development",
"bundle": "webpack --mode production",
"clean": "npx rimraf dist out .vscode-test .vscode-test-web .eslintcache* tsconfig*.tsbuildinfo",
"lint": "eslint \"src/**/*.ts?(x)\" --fix",
"package": "vsce package --yarn",
"package-pre": "yarn run patch-pre && yarn run package --pre-release",
"patch-pre": "node ./scripts/applyPreReleasePatch.js",
"pretty": "prettier --config .prettierrc --loglevel warn --write .",
"pub": "vsce publish --yarn",
"pub-pre": "vsce publish --yarn --pre-release",
"rebuild": "yarn run reset && yarn run build",
"reset": "yarn run clean && yarn --frozen-lockfile",
"watch": "webpack --watch --mode development",
"web": "vscode-test-web --extensionDevelopmentPath=. --folder-uri=vscode-vfs://github/eamodio/vscode-toggle-excluded-files",
"web:serve": "npx serve --cors -l 5000",
"web:tunnel": "npx localtunnel -p 5000",
"update-dts": "pushd \"src/@types\" && npx vscode-dts dev && popd",
"update-dts:master": "pushd \"src/@types\" && npx vscode-dts master && popd",
"vscode:prepublish": "yarn run bundle"
},
"devDependencies": {
"@types/node": "16.11.47",
"@types/vscode": "1.72.0",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@vscode/vsce": "2.18.0",
"circular-dependency-plugin": "5.2.2",
"clean-webpack-plugin": "4.0.0",
"esbuild": "0.17.15",
"esbuild-loader": "3.0.1",
"eslint": "8.38.0",
"eslint-cli": "1.1.1",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-anti-trojan-source": "1.1.1",
"eslint-plugin-import": "2.27.5",
"fork-ts-checker-webpack-plugin": "6.5.3",
"prettier": "2.8.7",
"terser-webpack-plugin": "5.3.7",
"ts-loader": "9.4.2",
"typescript": "5.0.4",
"webpack": "5.78.0",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.1"
}
}