-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.7 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bikkuri-theme",
"displayName": "Bikkuri Theme",
"description": "Set of 10 dark themes for VS Code, including syntax highlighting, debugging, diff/merge and terminal colors.",
"publisher": "brano",
"author": "Brano Sandala",
"version": "1.0.15",
"icon": "assets/bikkuri-icon.png",
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Themes"
],
"repository": {
"type": "git",
"url": "https://github.com/surfinzap/bikkuri-theme-vscode.git"
},
"sponsor": {
"url": "https://ko-fi.com/branosandala"
},
"contributes": {
"themes": [
{
"label": "Bikkuri (Dark Coal & Lively)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-coal-lively.json"
},
{
"label": "Bikkuri (Dark Coal & Serene)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-coal-serene.json"
},
{
"label": "Bikkuri (Dark Moss & Lively)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-moss-lively.json"
},
{
"label": "Bikkuri (Dark Moss & Serene)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-moss-serene.json"
},
{
"label": "Bikkuri (Dark Navy & Lively)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-navy-lively.json"
},
{
"label": "Bikkuri (Dark Navy & Serene)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-navy-serene.json"
},
{
"label": "Bikkuri (Dark Plum & Lively)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-plum-lively.json"
},
{
"label": "Bikkuri (Dark Plum & Serene)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-plum-serene.json"
},
{
"label": "Bikkuri (Dark Warm & Lively)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-warm-lively.json"
},
{
"label": "Bikkuri (Dark Warm & Serene)",
"uiTheme": "vs-dark",
"path": "./dist/bikkuri-dark-warm-serene.json"
}
]
},
"keywords": [
"dark",
"theme",
"warm",
"moss",
"navy",
"plum",
"coal",
"lively",
"serene"
],
"__metadata": {
"id": "881b66c9-1ceb-4da7-a5a5-46486093c94c",
"publisherDisplayName": "Brano Sandala",
"publisherId": "c5a4b323-3691-4530-85d1-49eb940a1614",
"isPreReleaseVersion": false
},
"scripts": {
"watch": "gulp watch",
"fetch": "node scripts/fetch-vs-code-vars.js"
},
"devDependencies": {
"@vscode/vsce": "^3.2.1",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"child_process": "^1.0.2",
"gulp": "^5.0.0",
"gulp-watch": "^5.0.1",
"json5": "^2.2.3"
}
}