material-icon-theme 4.20.0 → 4.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1233 -1213
- package/icons/caddy.svg +9 -0
- package/icons/cadence.svg +10 -0
- package/icons/drone.svg +6 -1
- package/icons/drone_light.svg +6 -1
- package/icons/folder-netlify-open.svg +5 -0
- package/icons/folder-netlify.svg +2 -0
- package/icons/folder-pdf-open.svg +2 -0
- package/icons/folder-pdf.svg +2 -0
- package/icons/folder-proto-open.svg +2 -0
- package/icons/folder-proto.svg +2 -0
- package/icons/pdf.svg +4 -1
- package/images/contributors.png +0 -0
- package/images/fileIcons.png +0 -0
- package/images/folderIcons.png +0 -0
- package/package.json +267 -267
- package/src/icons/fileIcons.ts +2113 -2095
- package/src/icons/folderIcons.ts +790 -781
- package/src/icons/languageIcons.ts +3 -0
package/package.json
CHANGED
|
@@ -1,267 +1,267 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "material-icon-theme",
|
|
3
|
-
"displayName": "Material Icon Theme",
|
|
4
|
-
"description": "Material Design Icons for Visual Studio Code",
|
|
5
|
-
"version": "4.
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "npm run compile:dev && npm run postcompile",
|
|
8
|
-
"check": "ts-node ./src/scripts/icons/checks",
|
|
9
|
-
"compile": "webpack --config ./build/webpack.config.js --mode production",
|
|
10
|
-
"compile:dev": "webpack --config ./build/webpack.config.js --mode none",
|
|
11
|
-
"compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
|
|
12
|
-
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
|
|
13
|
-
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
|
|
14
|
-
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
|
|
15
|
-
"contributors": "ts-node ./src/scripts/contributors/index.ts",
|
|
16
|
-
"generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
|
|
17
|
-
"lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
|
|
18
|
-
"postcompile": "npm run generateJson && npm run check",
|
|
19
|
-
"pretest": "npm run build && tsc -p ./",
|
|
20
|
-
"preview": "ts-node ./src/scripts/preview",
|
|
21
|
-
"svgo": "svgo -i icons -o icons -q",
|
|
22
|
-
"test": "node ./out/test/runTest.js",
|
|
23
|
-
"changelog": "changelog-machine --config changelog.config.json",
|
|
24
|
-
"preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
|
|
25
|
-
"version": "npm run changelog && git add CHANGELOG.md",
|
|
26
|
-
"vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
|
|
27
|
-
},
|
|
28
|
-
"publisher": "PKief",
|
|
29
|
-
"author": {
|
|
30
|
-
"name": "Philipp Kief",
|
|
31
|
-
"email": "philipp.kief@gmx.de",
|
|
32
|
-
"url": "https://pkief.github.io"
|
|
33
|
-
},
|
|
34
|
-
"funding": "https://github.com/sponsors/PKief",
|
|
35
|
-
"sponsor": {
|
|
36
|
-
"url": "https://github.com/sponsors/PKief"
|
|
37
|
-
},
|
|
38
|
-
"engines": {
|
|
39
|
-
"vscode": "^1.51.0"
|
|
40
|
-
},
|
|
41
|
-
"homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
|
|
42
|
-
"repository": {
|
|
43
|
-
"type": "git",
|
|
44
|
-
"url": "https://github.com/PKief/vscode-material-icon-theme.git"
|
|
45
|
-
},
|
|
46
|
-
"bugs": {
|
|
47
|
-
"url": "https://github.com/PKief/vscode-material-icon-theme/issues"
|
|
48
|
-
},
|
|
49
|
-
"icon": "logo.png",
|
|
50
|
-
"galleryBanner": {
|
|
51
|
-
"color": "#1e1e1e",
|
|
52
|
-
"theme": "dark"
|
|
53
|
-
},
|
|
54
|
-
"categories": [
|
|
55
|
-
"Themes"
|
|
56
|
-
],
|
|
57
|
-
"keywords": [
|
|
58
|
-
"icons",
|
|
59
|
-
"theme",
|
|
60
|
-
"material",
|
|
61
|
-
"icon-theme",
|
|
62
|
-
"customization"
|
|
63
|
-
],
|
|
64
|
-
"extensionKind": [
|
|
65
|
-
"ui",
|
|
66
|
-
"workspace"
|
|
67
|
-
],
|
|
68
|
-
"capabilities": {
|
|
69
|
-
"untrustedWorkspaces": {
|
|
70
|
-
"supported": true
|
|
71
|
-
},
|
|
72
|
-
"virtualWorkspaces": true
|
|
73
|
-
},
|
|
74
|
-
"activationEvents": [
|
|
75
|
-
"onStartupFinished"
|
|
76
|
-
],
|
|
77
|
-
"main": "./dist/extension",
|
|
78
|
-
"browser": "./dist/web/extension.js",
|
|
79
|
-
"sideEffects": false,
|
|
80
|
-
"contributes": {
|
|
81
|
-
"iconThemes": [
|
|
82
|
-
{
|
|
83
|
-
"id": "material-icon-theme",
|
|
84
|
-
"label": "Material Icon Theme",
|
|
85
|
-
"path": "./dist/material-icons.json",
|
|
86
|
-
"_watch": true
|
|
87
|
-
}
|
|
88
|
-
],
|
|
89
|
-
"commands": [
|
|
90
|
-
{
|
|
91
|
-
"command": "material-icon-theme.activateIcons",
|
|
92
|
-
"title": "%command.activateIcons%",
|
|
93
|
-
"enablement": "!isWeb"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"command": "material-icon-theme.toggleIconPacks",
|
|
97
|
-
"title": "%command.toggleIconPacks%",
|
|
98
|
-
"enablement": "!isWeb"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"command": "material-icon-theme.changeFolderTheme",
|
|
102
|
-
"title": "%command.changeFolderTheme%",
|
|
103
|
-
"enablement": "!isWeb"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"command": "material-icon-theme.changeFolderColor",
|
|
107
|
-
"title": "%command.changeFolderColor%",
|
|
108
|
-
"enablement": "!isWeb"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"command": "material-icon-theme.restoreDefaultConfig",
|
|
112
|
-
"title": "%command.restoreDefaultConfig%",
|
|
113
|
-
"enablement": "!isWeb"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"command": "material-icon-theme.toggleExplorerArrows",
|
|
117
|
-
"title": "%command.toggleExplorerArrows%",
|
|
118
|
-
"enablement": "!isWeb"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"command": "material-icon-theme.changeOpacity",
|
|
122
|
-
"title": "%command.changeOpacity%",
|
|
123
|
-
"enablement": "!isWeb"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"command": "material-icon-theme.toggleGrayscale",
|
|
127
|
-
"title": "%command.toggleGrayscale%",
|
|
128
|
-
"enablement": "!isWeb"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"command": "material-icon-theme.changeSaturation",
|
|
132
|
-
"title": "%command.changeSaturation%",
|
|
133
|
-
"enablement": "!isWeb"
|
|
134
|
-
}
|
|
135
|
-
],
|
|
136
|
-
"configuration": {
|
|
137
|
-
"type": "object",
|
|
138
|
-
"title": "%configuration.title%",
|
|
139
|
-
"properties": {
|
|
140
|
-
"material-icon-theme.showWelcomeMessage": {
|
|
141
|
-
"type": "boolean",
|
|
142
|
-
"default": true,
|
|
143
|
-
"description": "%configuration.showWelcomeMessage%"
|
|
144
|
-
},
|
|
145
|
-
"material-icon-theme.showUpdateMessage": {
|
|
146
|
-
"type": "boolean",
|
|
147
|
-
"default": false,
|
|
148
|
-
"description": "%configuration.showUpdateMessage%"
|
|
149
|
-
},
|
|
150
|
-
"material-icon-theme.showReloadMessage": {
|
|
151
|
-
"type": "boolean",
|
|
152
|
-
"default": true,
|
|
153
|
-
"description": "%configuration.showReloadMessage%"
|
|
154
|
-
},
|
|
155
|
-
"material-icon-theme.activeIconPack": {
|
|
156
|
-
"type": "string",
|
|
157
|
-
"default": "angular",
|
|
158
|
-
"description": "%configuration.activeIconPack%",
|
|
159
|
-
"enumDescriptions": [
|
|
160
|
-
"%configuration.activeIconPack.angular%",
|
|
161
|
-
"%configuration.activeIconPack.angular_ngrx%",
|
|
162
|
-
"%configuration.activeIconPack.react%",
|
|
163
|
-
"%configuration.activeIconPack.react_redux%",
|
|
164
|
-
"%configuration.activeIconPack.vue%",
|
|
165
|
-
"%configuration.activeIconPack.vue_vuex%",
|
|
166
|
-
"%configuration.activeIconPack.nest%",
|
|
167
|
-
"%configuration.activeIconPack.none%"
|
|
168
|
-
],
|
|
169
|
-
"enum": [
|
|
170
|
-
"angular",
|
|
171
|
-
"angular_ngrx",
|
|
172
|
-
"react",
|
|
173
|
-
"react_redux",
|
|
174
|
-
"vue",
|
|
175
|
-
"vue_vuex",
|
|
176
|
-
"nest",
|
|
177
|
-
"none"
|
|
178
|
-
]
|
|
179
|
-
},
|
|
180
|
-
"material-icon-theme.files.associations": {
|
|
181
|
-
"type": "object",
|
|
182
|
-
"default": {},
|
|
183
|
-
"description": "%configuration.files.associations%"
|
|
184
|
-
},
|
|
185
|
-
"material-icon-theme.folders.associations": {
|
|
186
|
-
"type": "object",
|
|
187
|
-
"default": {},
|
|
188
|
-
"description": "%configuration.folders.associations%"
|
|
189
|
-
},
|
|
190
|
-
"material-icon-theme.languages.associations": {
|
|
191
|
-
"type": "object",
|
|
192
|
-
"default": {},
|
|
193
|
-
"description": "%configuration.languages.associations%"
|
|
194
|
-
},
|
|
195
|
-
"material-icon-theme.folders.theme": {
|
|
196
|
-
"type": "string",
|
|
197
|
-
"default": "specific",
|
|
198
|
-
"description": "%configuration.folders.theme%",
|
|
199
|
-
"enumDescriptions": [
|
|
200
|
-
"%configuration.folders.theme.specific%",
|
|
201
|
-
"%configuration.folders.theme.classic%",
|
|
202
|
-
"%configuration.folders.theme.none%"
|
|
203
|
-
],
|
|
204
|
-
"enum": [
|
|
205
|
-
"specific",
|
|
206
|
-
"classic",
|
|
207
|
-
"none"
|
|
208
|
-
]
|
|
209
|
-
},
|
|
210
|
-
"material-icon-theme.folders.color": {
|
|
211
|
-
"type": "string",
|
|
212
|
-
"default": "#90a4ae",
|
|
213
|
-
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
|
|
214
|
-
"description": "%configuration.folders.color%"
|
|
215
|
-
},
|
|
216
|
-
"material-icon-theme.opacity": {
|
|
217
|
-
"type": "number",
|
|
218
|
-
"default": 1,
|
|
219
|
-
"minimum": 0,
|
|
220
|
-
"maximum": 1,
|
|
221
|
-
"description": "%configuration.opacity%"
|
|
222
|
-
},
|
|
223
|
-
"material-icon-theme.hidesExplorerArrows": {
|
|
224
|
-
"type": "boolean",
|
|
225
|
-
"default": false,
|
|
226
|
-
"description": "%configuration.hidesExplorerArrows%"
|
|
227
|
-
},
|
|
228
|
-
"material-icon-theme.saturation": {
|
|
229
|
-
"type": "number",
|
|
230
|
-
"default": 1,
|
|
231
|
-
"minimum": 0,
|
|
232
|
-
"maximum": 1,
|
|
233
|
-
"description": "%configuration.saturation%"
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
},
|
|
238
|
-
"dependencies": {
|
|
239
|
-
"lodash.merge": "4.6.2"
|
|
240
|
-
},
|
|
241
|
-
"devDependencies": {
|
|
242
|
-
"@types/glob": "^7.2.0",
|
|
243
|
-
"@types/lodash.merge": "^4.6.7",
|
|
244
|
-
"@types/mocha": "^9.1.1",
|
|
245
|
-
"@types/node": "^17.0.35",
|
|
246
|
-
"@types/puppeteer": "^5.4.6",
|
|
247
|
-
"@types/vscode": "~1.51.0",
|
|
248
|
-
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
249
|
-
"@typescript-eslint/parser": "^5.26.0",
|
|
250
|
-
"changelog-machine": "^1.0.2",
|
|
251
|
-
"eslint": "^8.16.0",
|
|
252
|
-
"eslint-config-prettier": "^8.5.0",
|
|
253
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
254
|
-
"glob": "^8.0.3",
|
|
255
|
-
"mocha": "^10.0.0",
|
|
256
|
-
"prettier": "^2.6.2",
|
|
257
|
-
"puppeteer": "^14.1.1",
|
|
258
|
-
"rimraf": "^3.0.2",
|
|
259
|
-
"svgo": "^2.8.0",
|
|
260
|
-
"ts-loader": "^9.3.0",
|
|
261
|
-
"ts-node": "^10.8.0",
|
|
262
|
-
"typescript": "^4.7.2",
|
|
263
|
-
"vscode-test": "^1.6.1",
|
|
264
|
-
"webpack": "^5.71.1",
|
|
265
|
-
"webpack-cli": "^4.9.2"
|
|
266
|
-
}
|
|
267
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "material-icon-theme",
|
|
3
|
+
"displayName": "Material Icon Theme",
|
|
4
|
+
"description": "Material Design Icons for Visual Studio Code",
|
|
5
|
+
"version": "4.21.0",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "npm run compile:dev && npm run postcompile",
|
|
8
|
+
"check": "ts-node ./src/scripts/icons/checks",
|
|
9
|
+
"compile": "webpack --config ./build/webpack.config.js --mode production",
|
|
10
|
+
"compile:dev": "webpack --config ./build/webpack.config.js --mode none",
|
|
11
|
+
"compile:watch": "webpack --config ./build/webpack.config.js --mode none --watch",
|
|
12
|
+
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
|
|
13
|
+
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
|
|
14
|
+
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
|
|
15
|
+
"contributors": "ts-node ./src/scripts/contributors/index.ts",
|
|
16
|
+
"generateJson": "ts-node ./src/scripts/icons/generateJson.ts",
|
|
17
|
+
"lint": "eslint -c .eslintrc.json --ext .ts ./src/**/*.ts",
|
|
18
|
+
"postcompile": "npm run generateJson && npm run check",
|
|
19
|
+
"pretest": "npm run build && tsc -p ./",
|
|
20
|
+
"preview": "ts-node ./src/scripts/preview",
|
|
21
|
+
"svgo": "svgo -i icons -o icons -q",
|
|
22
|
+
"test": "node ./out/test/runTest.js",
|
|
23
|
+
"changelog": "changelog-machine --config changelog.config.json",
|
|
24
|
+
"preversion": "npm run contributors && git add images/contributors.png && npm run preview && git add images/fileIcons.png && git add images/folderIcons.png",
|
|
25
|
+
"version": "npm run changelog && git add CHANGELOG.md",
|
|
26
|
+
"vscode:prepublish": "npm run lint && npm run compile && npm run package-web"
|
|
27
|
+
},
|
|
28
|
+
"publisher": "PKief",
|
|
29
|
+
"author": {
|
|
30
|
+
"name": "Philipp Kief",
|
|
31
|
+
"email": "philipp.kief@gmx.de",
|
|
32
|
+
"url": "https://pkief.github.io"
|
|
33
|
+
},
|
|
34
|
+
"funding": "https://github.com/sponsors/PKief",
|
|
35
|
+
"sponsor": {
|
|
36
|
+
"url": "https://github.com/sponsors/PKief"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"vscode": "^1.51.0"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/PKief/vscode-material-icon-theme/blob/main/README.md",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/PKief/vscode-material-icon-theme.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/PKief/vscode-material-icon-theme/issues"
|
|
48
|
+
},
|
|
49
|
+
"icon": "logo.png",
|
|
50
|
+
"galleryBanner": {
|
|
51
|
+
"color": "#1e1e1e",
|
|
52
|
+
"theme": "dark"
|
|
53
|
+
},
|
|
54
|
+
"categories": [
|
|
55
|
+
"Themes"
|
|
56
|
+
],
|
|
57
|
+
"keywords": [
|
|
58
|
+
"icons",
|
|
59
|
+
"theme",
|
|
60
|
+
"material",
|
|
61
|
+
"icon-theme",
|
|
62
|
+
"customization"
|
|
63
|
+
],
|
|
64
|
+
"extensionKind": [
|
|
65
|
+
"ui",
|
|
66
|
+
"workspace"
|
|
67
|
+
],
|
|
68
|
+
"capabilities": {
|
|
69
|
+
"untrustedWorkspaces": {
|
|
70
|
+
"supported": true
|
|
71
|
+
},
|
|
72
|
+
"virtualWorkspaces": true
|
|
73
|
+
},
|
|
74
|
+
"activationEvents": [
|
|
75
|
+
"onStartupFinished"
|
|
76
|
+
],
|
|
77
|
+
"main": "./dist/extension",
|
|
78
|
+
"browser": "./dist/web/extension.js",
|
|
79
|
+
"sideEffects": false,
|
|
80
|
+
"contributes": {
|
|
81
|
+
"iconThemes": [
|
|
82
|
+
{
|
|
83
|
+
"id": "material-icon-theme",
|
|
84
|
+
"label": "Material Icon Theme",
|
|
85
|
+
"path": "./dist/material-icons.json",
|
|
86
|
+
"_watch": true
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"commands": [
|
|
90
|
+
{
|
|
91
|
+
"command": "material-icon-theme.activateIcons",
|
|
92
|
+
"title": "%command.activateIcons%",
|
|
93
|
+
"enablement": "!isWeb"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"command": "material-icon-theme.toggleIconPacks",
|
|
97
|
+
"title": "%command.toggleIconPacks%",
|
|
98
|
+
"enablement": "!isWeb"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"command": "material-icon-theme.changeFolderTheme",
|
|
102
|
+
"title": "%command.changeFolderTheme%",
|
|
103
|
+
"enablement": "!isWeb"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"command": "material-icon-theme.changeFolderColor",
|
|
107
|
+
"title": "%command.changeFolderColor%",
|
|
108
|
+
"enablement": "!isWeb"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"command": "material-icon-theme.restoreDefaultConfig",
|
|
112
|
+
"title": "%command.restoreDefaultConfig%",
|
|
113
|
+
"enablement": "!isWeb"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"command": "material-icon-theme.toggleExplorerArrows",
|
|
117
|
+
"title": "%command.toggleExplorerArrows%",
|
|
118
|
+
"enablement": "!isWeb"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"command": "material-icon-theme.changeOpacity",
|
|
122
|
+
"title": "%command.changeOpacity%",
|
|
123
|
+
"enablement": "!isWeb"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"command": "material-icon-theme.toggleGrayscale",
|
|
127
|
+
"title": "%command.toggleGrayscale%",
|
|
128
|
+
"enablement": "!isWeb"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"command": "material-icon-theme.changeSaturation",
|
|
132
|
+
"title": "%command.changeSaturation%",
|
|
133
|
+
"enablement": "!isWeb"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"configuration": {
|
|
137
|
+
"type": "object",
|
|
138
|
+
"title": "%configuration.title%",
|
|
139
|
+
"properties": {
|
|
140
|
+
"material-icon-theme.showWelcomeMessage": {
|
|
141
|
+
"type": "boolean",
|
|
142
|
+
"default": true,
|
|
143
|
+
"description": "%configuration.showWelcomeMessage%"
|
|
144
|
+
},
|
|
145
|
+
"material-icon-theme.showUpdateMessage": {
|
|
146
|
+
"type": "boolean",
|
|
147
|
+
"default": false,
|
|
148
|
+
"description": "%configuration.showUpdateMessage%"
|
|
149
|
+
},
|
|
150
|
+
"material-icon-theme.showReloadMessage": {
|
|
151
|
+
"type": "boolean",
|
|
152
|
+
"default": true,
|
|
153
|
+
"description": "%configuration.showReloadMessage%"
|
|
154
|
+
},
|
|
155
|
+
"material-icon-theme.activeIconPack": {
|
|
156
|
+
"type": "string",
|
|
157
|
+
"default": "angular",
|
|
158
|
+
"description": "%configuration.activeIconPack%",
|
|
159
|
+
"enumDescriptions": [
|
|
160
|
+
"%configuration.activeIconPack.angular%",
|
|
161
|
+
"%configuration.activeIconPack.angular_ngrx%",
|
|
162
|
+
"%configuration.activeIconPack.react%",
|
|
163
|
+
"%configuration.activeIconPack.react_redux%",
|
|
164
|
+
"%configuration.activeIconPack.vue%",
|
|
165
|
+
"%configuration.activeIconPack.vue_vuex%",
|
|
166
|
+
"%configuration.activeIconPack.nest%",
|
|
167
|
+
"%configuration.activeIconPack.none%"
|
|
168
|
+
],
|
|
169
|
+
"enum": [
|
|
170
|
+
"angular",
|
|
171
|
+
"angular_ngrx",
|
|
172
|
+
"react",
|
|
173
|
+
"react_redux",
|
|
174
|
+
"vue",
|
|
175
|
+
"vue_vuex",
|
|
176
|
+
"nest",
|
|
177
|
+
"none"
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"material-icon-theme.files.associations": {
|
|
181
|
+
"type": "object",
|
|
182
|
+
"default": {},
|
|
183
|
+
"description": "%configuration.files.associations%"
|
|
184
|
+
},
|
|
185
|
+
"material-icon-theme.folders.associations": {
|
|
186
|
+
"type": "object",
|
|
187
|
+
"default": {},
|
|
188
|
+
"description": "%configuration.folders.associations%"
|
|
189
|
+
},
|
|
190
|
+
"material-icon-theme.languages.associations": {
|
|
191
|
+
"type": "object",
|
|
192
|
+
"default": {},
|
|
193
|
+
"description": "%configuration.languages.associations%"
|
|
194
|
+
},
|
|
195
|
+
"material-icon-theme.folders.theme": {
|
|
196
|
+
"type": "string",
|
|
197
|
+
"default": "specific",
|
|
198
|
+
"description": "%configuration.folders.theme%",
|
|
199
|
+
"enumDescriptions": [
|
|
200
|
+
"%configuration.folders.theme.specific%",
|
|
201
|
+
"%configuration.folders.theme.classic%",
|
|
202
|
+
"%configuration.folders.theme.none%"
|
|
203
|
+
],
|
|
204
|
+
"enum": [
|
|
205
|
+
"specific",
|
|
206
|
+
"classic",
|
|
207
|
+
"none"
|
|
208
|
+
]
|
|
209
|
+
},
|
|
210
|
+
"material-icon-theme.folders.color": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"default": "#90a4ae",
|
|
213
|
+
"pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
|
|
214
|
+
"description": "%configuration.folders.color%"
|
|
215
|
+
},
|
|
216
|
+
"material-icon-theme.opacity": {
|
|
217
|
+
"type": "number",
|
|
218
|
+
"default": 1,
|
|
219
|
+
"minimum": 0,
|
|
220
|
+
"maximum": 1,
|
|
221
|
+
"description": "%configuration.opacity%"
|
|
222
|
+
},
|
|
223
|
+
"material-icon-theme.hidesExplorerArrows": {
|
|
224
|
+
"type": "boolean",
|
|
225
|
+
"default": false,
|
|
226
|
+
"description": "%configuration.hidesExplorerArrows%"
|
|
227
|
+
},
|
|
228
|
+
"material-icon-theme.saturation": {
|
|
229
|
+
"type": "number",
|
|
230
|
+
"default": 1,
|
|
231
|
+
"minimum": 0,
|
|
232
|
+
"maximum": 1,
|
|
233
|
+
"description": "%configuration.saturation%"
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"dependencies": {
|
|
239
|
+
"lodash.merge": "4.6.2"
|
|
240
|
+
},
|
|
241
|
+
"devDependencies": {
|
|
242
|
+
"@types/glob": "^7.2.0",
|
|
243
|
+
"@types/lodash.merge": "^4.6.7",
|
|
244
|
+
"@types/mocha": "^9.1.1",
|
|
245
|
+
"@types/node": "^17.0.35",
|
|
246
|
+
"@types/puppeteer": "^5.4.6",
|
|
247
|
+
"@types/vscode": "~1.51.0",
|
|
248
|
+
"@typescript-eslint/eslint-plugin": "^5.26.0",
|
|
249
|
+
"@typescript-eslint/parser": "^5.26.0",
|
|
250
|
+
"changelog-machine": "^1.0.2",
|
|
251
|
+
"eslint": "^8.16.0",
|
|
252
|
+
"eslint-config-prettier": "^8.5.0",
|
|
253
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
254
|
+
"glob": "^8.0.3",
|
|
255
|
+
"mocha": "^10.0.0",
|
|
256
|
+
"prettier": "^2.6.2",
|
|
257
|
+
"puppeteer": "^14.1.1",
|
|
258
|
+
"rimraf": "^3.0.2",
|
|
259
|
+
"svgo": "^2.8.0",
|
|
260
|
+
"ts-loader": "^9.3.0",
|
|
261
|
+
"ts-node": "^10.8.0",
|
|
262
|
+
"typescript": "^4.7.2",
|
|
263
|
+
"vscode-test": "^1.6.1",
|
|
264
|
+
"webpack": "^5.71.1",
|
|
265
|
+
"webpack-cli": "^4.9.2"
|
|
266
|
+
}
|
|
267
|
+
}
|