forked from DavidBabel/vscode-simpler-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.17 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
{
"name": "vscode-simpler-icons",
"displayName": "VSCode simpler Icons with Angular",
"description": "A fork from vscode-great-icons. With fewer different icons and some angular icons. Mainly created for personnal use.",
"version": "1.6.0",
"publisher": "davidbabel",
"engines": {
"vscode": "^1.5.0"
},
"scripts": {
"patch": "vsce publish patch",
"icons": "imagemin icons/* --out-dir=icons",
"test": "exit 0"
},
"categories": [
"Other",
"Themes"
],
"contributes": {
"iconThemes": [
{
"id": "vscode-simpler-icons",
"label": "VSCode simpler Icons",
"path": "./icons.json"
}
]
},
"icon": "images/vscode-simpler-icons_icon.png",
"galleryBanner": {
"color": "#e0e0e0",
"theme": "light"
},
"keywords": [
"angular",
"icons",
"theme",
"icon-theme",
"customization"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DavidBabel/vscode-simpler-icons.git"
},
"author": {
"email": "[email protected]",
"name": "David Babel",
"url": ""
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DavidBabel/vscode-simpler-icons/issues"
},
"homepage": "https://github.com/DavidBabel/vscode-simpler-icons#readme"
}