-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "next-icons",
"displayName": "Next.js Icons",
"description": "A carefully crafted set of file icons tailored specifically for Next.js projects.",
"license": "MIT",
"version": "0.1.0",
"icon": "marketplace-icon.png",
"publisher": "marcbruederlin",
"author": {
"name": "Marc Brüderlin"
},
"categories": [
"Themes"
],
"keywords": [
"icons",
"theme",
"icon-theme",
"file-icon-theme",
"file icons",
"next.js"
],
"repository": {
"type": "git",
"url": "https://github.com/marcbruederlin/vscode-next-icons.git"
},
"bugs": {
"url": "https://github.com/marcbruederlin/vscode-next-icons/issues"
},
"engines": {
"vscode": "^1.70.0"
},
"contributes": {
"iconThemes": [
{
"id": "next-icons",
"label": "Next Icons",
"path": "./fileicons/default.json"
},
{
"id": "next-icons-light",
"label": "Next Icons (Light)",
"path": "./fileicons/light.json"
},
{
"id": "next-icons-dark",
"label": "Next Icons (Dark)",
"path": "./fileicons/dark.json"
}
]
}
}