-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.25 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
{
"name": "dark-turquoise",
"displayName": "Dark Turquoise",
"description": "Deep dark themes for Visual Studio Code",
"version": "2.2.1",
"publisher": "vhood",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/vhood/vscode-dark-turquoise"
},
"scripts": {
"build": "node scripts/build.js"
},
"keywords": [
"theme",
"dark",
"deep dark",
"turquoise",
"rainbow",
"dark turquoise"
],
"galleryBanner": {
"color": "#030705",
"theme": "dark"
},
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Themes"
],
"icon": "media/logo.png",
"contributes": {
"themes": [
{
"label": "Dark Turquoise",
"uiTheme": "vs-dark",
"path": "./themes/dark-turquoise_color-theme.json"
},
{
"label": "Dark Turquoise ~ Night",
"uiTheme": "vs-dark",
"path": "./themes/dark-turquoise-night_color-theme.json"
},
{
"label": "Dark Turquoise ~ Rainbow",
"uiTheme": "vs-dark",
"path": "./themes/dark-turquoise-rainbow_color-theme.json"
},
{
"label": "Dark Turquoise ~ Night Rainbow",
"uiTheme": "vs-dark",
"path": "./themes/dark-turquoise-night-rainbow_color-theme.json"
}
]
},
"dependencies": {},
"devDependencies": {
"del": "^5.1.0"
}
}