-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.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
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
{
"name": "vscode-themes-to-die-for",
"displayName": "Themes To Die For",
"description": "A collection of my favorite VS Code themes",
"icon": "icon.png",
"version": "1.5.4",
"publisher": "aleclarson",
"repository": {
"type": "git",
"url": "https://github.com/alloc/vscode-themes.git"
},
"engines": {
"vscode": "*"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Gruvbox Dark Moist",
"uiTheme": "vs-dark",
"path": "./themes/gruvbox-dark-moist.json"
},
{
"label": "Gruvbox Material Dark",
"uiTheme": "vs-dark",
"path": "./themes/gruvbox-material-dark.json"
},
{
"label": "Minimal Green",
"uiTheme": "vs-dark",
"path": "./themes/minimal-green.json"
},
{
"label": "New England",
"uiTheme": "vs",
"path": "./themes/new-england.json"
},
{
"label": "Remedy Bright",
"uiTheme": "vs",
"path": "./themes/remedy-bright.json"
},
{
"label": "Rose Pine Dawn",
"uiTheme": "vs",
"path": "./themes/rose-pine-dawn.json"
},
{
"label": "Seoul Dark",
"uiTheme": "vs-dark",
"path": "./themes/seoul-dark.json"
},
{
"label": "Tokyo Night Light",
"uiTheme": "vs",
"path": "./themes/tokyo-night-light.json"
},
{
"label": "Numa Pro",
"uiTheme": "vs",
"path": "./themes/numa-pro.json"
},
{
"label": "Numa Pro Dark",
"uiTheme": "vs-dark",
"path": "./themes/numa-pro-dark.json"
}
]
},
"scripts": {
"generate": "sucrase-node generate/index.ts",
"update": "sucrase-node update.ts"
},
"devDependencies": {
"@types/chroma-js": "^2.4.0",
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^20.4.8",
"chalk": "^4.1.2",
"chroma-js": "^2.4.2",
"fs-extra": "^11.1.1",
"json-in-place": "^1.0.1",
"jsonc": "^2.0.0",
"minimist": "^1.2.8",
"strip-ansi": "^6.0.1",
"sucrase": "^3.34.0"
}
}