-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.33 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
{
"name": "vscode-windows-xp-theme",
"displayName": "Windows XP",
"description": "Windows XP theme for VS Code",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/vscode-windows-xp-theme"
},
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"homepage": "https://github.com/sinedied/vscode-windows-xp-theme/",
"bugs": {
"url": "https://github.com/sinedied/vscode-windows-xp-theme/issues"
},
"license": "MIT",
"version": "0.1.2",
"publisher": "sinedied",
"preview": true,
"icon": "icon.png",
"galleryBanner": {
"color": "#f0eee4",
"theme": "light"
},
"categories": [
"Themes"
],
"engines": {
"vscode": "^1.17.0"
},
"scripts": {
"package": "npx vsce package",
"release": "npx vsce publish"
},
"keywords": [
"vscode",
"theme",
"windows",
"xp",
"light",
"classic",
"luna",
"icons",
"icon-theme",
"customization"
],
"contributes": {
"themes": [
{
"id": "windows-xp",
"label": "Windows XP Luna (Light)",
"uiTheme": "vs",
"path": "./themes/windows-xp-color-theme.json"
}
],
"iconThemes": [
{
"id": "windows-xp-icons",
"label": "Windows XP Icons",
"path": "./icons/windows-xp-icon-theme.json"
}
]
}
}