-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.57 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
{
"name": "phosphor-theme",
"displayName": "Phosphor Theme",
"description": "A dark theme for VS Code from the Phosphor Icons team",
"publisher": "phosphor-icons",
"author": {
"name": "Tobias Fried",
"email": "[email protected]"
},
"icon": "meta/phosphor-mark-tight-black.png",
"repository": {
"type": "git",
"url": "https://github.com/phosphor-icons/theme.git"
},
"homepage": "https://github.com/phosphor-icons/theme",
"sponsor": {
"url": "https://www.buymeacoffee.com/phosphoricons"
},
"version": "0.1.2",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"product-icon-theme",
"file-icon-theme",
"phosphor"
],
"files": [
"assets",
"meta",
"themes"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"contributes": {
"themes": [
{
"id": "phosphor-dark",
"label": "Phosphor Dark",
"uiTheme": "vs-dark",
"path": "./themes/ph-dark.color-theme.json"
},
{
"id": "phosphor-dark-min",
"label": "Phosphor Dark Min",
"uiTheme": "vs-dark",
"path": "./themes/ph-dark-min.color-theme.json"
}
],
"iconThemes": [
{
"id": "phosphor",
"label": "Phosphor",
"path": "./themes/ph-file-icon-theme.json"
}
],
"productIconThemes": [
{
"id": "phosphor",
"label": "Phosphor",
"path": "./themes/ph-product-icon-theme.json"
}
]
}
}