-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.13 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
{
"name": "vscode-great-icons",
"displayName": "VSCode Great Icons",
"description": "A big pack of icons (200+) for your files.",
"version": "2.1.112",
"publisher": "emmanuelbeziat",
"engines": {
"vscode": "^1.70.0"
},
"scripts": {
"publish": "npm run patch",
"patch": "vsce publish patch"
},
"categories": [
"Other",
"Themes"
],
"contributes": {
"iconThemes": [
{
"id": "vscode-great-icons",
"label": "VSCode Great Icons",
"path": "./icons.json"
}
]
},
"icon": "images/vscode-great-icons_icon.png",
"galleryBanner": {
"color": "#e0e0e0",
"theme": "light"
},
"keywords": [
"icons",
"theme",
"icon-theme",
"customization"
],
"repository": {
"type": "git",
"url": "https://github.com/EmmanuelBeziat/vscode-great-icons.git"
},
"author": {
"email": "[email protected]",
"name": "Emmanuel Béziat",
"url": "https://www.emmanuelbeziat.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/EmmanuelBeziat/vscode-great-icons/issues"
},
"homepage": "https://github.com/EmmanuelBeziat/vscode-great-icons#readme",
"devDependencies": {
"@vscode/vsce": "^3.2.1"
}
}