forked from vscode-icons/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
206 lines (206 loc) · 7.57 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
201
202
203
204
205
206
{
"name": "vscode-icons",
"displayName": "vscode-icons",
"description": "Icons for Visual Studio Code",
"version": "7.3.0",
"publisher": "robertohuertasm",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Roberto Huertas",
"url": "http://codecoding.com"
},
"repository": {
"type": "git",
"url": "https://github.com/vscode-icons/vscode-icons"
},
"bugs": {
"url": "https://github.com/vscode-icons/vscode-icons/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other",
"Themes"
],
"keywords": [
"icon-theme",
"theme",
"icons",
"vscode-icons"
],
"preview": true,
"homepage": "https://github.com/vscode-icons/vscode-icons",
"icon": "images/logo.svg",
"galleryBanner": {
"color": "#ffdd00"
},
"activationEvents": [
"*"
],
"main": "./out/src/",
"contributes": {
"iconThemes": [
{
"id": "vscode-icons",
"label": "VSCode Icons",
"path": "out/src/icons.json"
}
],
"commands": [
{
"command": "extension.regenerateIcons",
"title": "Apply Icons Customization",
"category": "Icons"
},
{
"command": "extension.ngPreset",
"title": "Toggle Angular Preset (Workspace Level)",
"category": "Icons"
},
{
"command": "extension.jsPreset",
"title": "Toggle Official JS Preset (User Level)",
"category": "Icons"
},
{
"command": "extension.tsPreset",
"title": "Toggle Official TS Preset (User Level)",
"category": "Icons"
},
{
"command": "extension.jsonPreset",
"title": "Toggle Official JSON Preset (User Level)",
"category": "Icons"
},
{
"command": "extension.hideFoldersPreset",
"title": "Toggle Folder Icons Visibility (User Level)",
"category": "Icons"
},
{
"command": "extension.restoreIcons",
"title": "Restore Default Icon Manifest",
"category": "Icons"
},
{
"command": "extension.resetProjectDetectionDefaults",
"title": "Reset Project Detection Defaults",
"category": "Icons"
}
],
"configuration": {
"title": "vscode-icons configuration",
"properties": {
"vsicons.dontShowNewVersionMessage": {
"type": "boolean",
"default": false,
"description": "If set to true the new version message won't be shown anymore."
},
"vsicons.projectDetection.autoReload": {
"type": "boolean",
"default": false,
"description": "If set to true the extension will restart automatically on project detection"
},
"vsicons.projectDetection.disableDetect": {
"type": "boolean",
"default": false,
"description": "If set to true the extension will disable the project detection"
},
"vsicons.presets.angular": {
"type": "boolean",
"default": true,
"description": "If set to true the extension will match some of the common Angular patterns"
},
"vsicons.presets.jsOfficial": {
"type": "boolean",
"default": false,
"description": "If set to true the extension will use the official JS icon"
},
"vsicons.presets.tsOfficial": {
"type": "boolean",
"default": false,
"description": "If set to true the extension will use the official TS icon"
},
"vsicons.presets.jsonOfficial": {
"type": "boolean",
"default": false,
"description": "If set to true the extension will use the official JSON icon"
},
"vsicons.presets.hideFolders": {
"type": "boolean",
"default": false,
"description": "If set to true all folders will be hidden"
},
"vsicons.associations.files": {
"type": "array",
"default": [],
"description": "These custom associations will override the file icon associations defined by default."
},
"vsicons.associations.folders": {
"type": "array",
"default": [],
"description": "These custom associations will override the folder icon associations defined by default."
},
"vsicons.associations.fileDefault.file": {
"type": "object",
"default": null,
"description": "This setting will let you change default dark file icon."
},
"vsicons.associations.fileDefault.file_light": {
"type": "object",
"default": null,
"description": "This setting will let you change default light file icon."
},
"vsicons.associations.folderDefault.folder": {
"type": "object",
"default": null,
"description": "This setting will let you change default dark folder icon."
},
"vsicons.associations.folderDefault.folder_light": {
"type": "object",
"default": null,
"description": "This setting will let you change default light folder icon."
}
}
}
},
"scripts": {
"prebuild": "npm run lint && npm run test",
"build": "node ./out/src/icon-manifest/build.js",
"example": "node ./out/src/example/example.js ",
"pretest": "npm run compile",
"test": "mocha ./out/test --recursive",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"test:vs": "node ./node_modules/vscode/bin/test",
"vscode:prepublish": "rimraf ./out && npm run build",
"compile:w": "rimraf ./out && tsc -watch -p ./",
"compile": "rimraf ./out && tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"analysis": "bithound check [email protected]:vscode-icons/vscode-icons.git"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "^0.0.29",
"@types/lodash": "^4.14.52",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.5",
"@types/sinon": "^1.16.35",
"bithound": "1.7.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"vscode": "^1.0.3"
},
"dependencies": {
"lodash": "^4.17.4",
"open": "0.0.5",
"semver": "^5.3.0"
}
}