forked from vscode-icons/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.32 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
{
"name": "vscode-icons",
"displayName": "vscode-icons",
"description": "Icons for Visual Studio Code",
"version": "3.0.5",
"publisher": "robertohuertasm",
"license": "MIT",
"author": {
"email": "[email protected]",
"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": "[email protected]"
},
"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": "./dist/extension",
"contributes": {
"commands": [
{
"command": "extension.installIcons",
"title": "Icons Enable"
},
{
"command": "extension.uninstallIcons",
"title": "Icons Disable"
},
{
"command": "extension.reinstallIcons",
"title": "Icons Update"
}
],
"configuration": {
"title": "vscode-icons configuration",
"properties": {
"vsicons.hideFolders": {
"type": "boolean",
"default": false,
"description": "If set to true folder icons won't be shown."
},
"vsicons.hideCustomFolderIcons": {
"type": "boolean",
"default": false,
"description": "If set to true custom folder icons won't be shown."
},
"vsicons.hideIconsInTabs": {
"type": "boolean",
"default": false,
"description": "If set to true tab icons won't be shown."
},
"vsicons.hideIconsEditors": {
"type": "boolean",
"default": false,
"description": "If set to true icons won't be shown in 'open editors' section."
},
"vsicons.useFileAssociations": {
"type": "boolean",
"default": false,
"description": "If set to true file and folder associations will be honored."
},
"vsicons.associations": {
"type": "array",
"default": [],
"description": "This is an associative array that must be filled with arrays whose first member is a regular expression matching the extension that you want to associate and the second member is the name of the extension whose icon you want to use."
},
"vsicons.icons": {
"type": "string",
"default": "",
"description": "If set you will change the location of the icons.zip file that vscode-icons uses in order to get the icons into your machine. You can use a well-formed URI or a local path."
}
}
},
"iconThemes": [
{
"id": "vscode-icons",
"label": "VSCode Icons",
"path": "./icons.json"
}
]
},
"scripts": {
"build": "node ./src/build/build.js",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"folder-zip": "0.0.5",
"mustache": "^2.2.1",
"ncp": "^2.0.0",
"node-zip": "^1.1.1",
"underscore": "^1.8.3",
"vscode": "^0.11.0"
},
"dependencies": {
"extract-zip": "^1.5.0",
"open": "0.0.5",
"replace-in-file": "^1.1.3",
"request": "^2.72.0",
"semver": "^5.3.0"
}
}