forked from vscode-icons/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
174 lines (174 loc) · 5.11 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
{
"name": "vscode-icons",
"displayName": "vscode-icons",
"description": "Icons for Visual Studio Code",
"version": "4.3.0",
"publisher": "robertohuertasm",
"license": "MIT",
"author": {
"email": "roberto.huertas@outlook.com",
"name": "Roberto Huertas",
"url": "http://codecoding.com"
},
"repository": {
"type": "git",
"url": "https://github.com/robertohuertasm/vscode-icons"
},
"bugs": {
"url": "https://github.com/robertohuertasm/vscode-icons/issues",
"email": "roberto.huertas@outlook.com"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other",
"Themes"
],
"keywords": [
"icon-theme",
"theme",
"icons",
"vscode-icons"
],
"preview": true,
"homepage": "https://github.com/robertohuertasm/vscode-icons",
"icon": "images/logo.png",
"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.hideFoldersPreset",
"title": "Toggle Folder Icons Visibility (User Level)",
"category": "Icons"
},
{
"command": "extension.restoreIcons",
"title": "Restore Default Icon Manifest",
"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.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.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",
"lint": "tslint src/**/*.ts test/**/*.ts",
"test:vs": "node ./node_modules/vscode/bin/test",
"vscode:prepublish": "tsc -p ./",
"compile:w": "tsc -watch -p ./",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/lodash": "^4.14.44",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.40",
"chai": "^3.5.0",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"tslint": "^4.2.0",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"open": "0.0.5",
"semver": "^5.3.0"
}
}