-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.17 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "yuan-vscode-theme",
"displayName": "Yuan",
"description": "A calm VS Code color theme family inspired by RMB denomination colors.",
"version": "0.5.1",
"publisher": "muqiuhan",
"license": "MIT",
"extensionKind": [
"ui"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"yuan",
"rmb",
"renminbi",
"light",
"dark"
],
"contributes": {
"themes": [
{
"id": "yuan-one-light",
"label": "壹元 (¥1) Light",
"uiTheme": "vs",
"path": "./themes/yuan-one-light-color-theme.json"
},
{
"id": "yuan-one-dark",
"label": "壹元 (¥1) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-one-dark-color-theme.json"
},
{
"id": "yuan-two-light",
"label": "贰元 (¥2) Light",
"uiTheme": "vs",
"path": "./themes/yuan-two-light-color-theme.json"
},
{
"id": "yuan-two-dark",
"label": "贰元 (¥2) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-two-dark-color-theme.json"
},
{
"id": "yuan-five-light",
"label": "伍元 (¥5) Light",
"uiTheme": "vs",
"path": "./themes/yuan-five-light-color-theme.json"
},
{
"id": "yuan-five-dark",
"label": "伍元 (¥5) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-five-dark-color-theme.json"
},
{
"id": "yuan-ten-light",
"label": "拾元 (¥10) Light",
"uiTheme": "vs",
"path": "./themes/yuan-ten-light-color-theme.json"
},
{
"id": "yuan-ten-dark",
"label": "拾元 (¥10) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-ten-dark-color-theme.json"
},
{
"id": "yuan-twenty-light",
"label": "贰拾元 (¥20) Light",
"uiTheme": "vs",
"path": "./themes/yuan-twenty-light-color-theme.json"
},
{
"id": "yuan-twenty-dark",
"label": "贰拾元 (¥20) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-twenty-dark-color-theme.json"
},
{
"id": "yuan-fifty-light",
"label": "伍拾元 (¥50) Light",
"uiTheme": "vs",
"path": "./themes/yuan-fifty-light-color-theme.json"
},
{
"id": "yuan-fifty-dark",
"label": "伍拾元 (¥50) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-fifty-dark-color-theme.json"
},
{
"id": "yuan-hundred-light",
"label": "壹佰元 (¥100) Light",
"uiTheme": "vs",
"path": "./themes/yuan-hundred-light-color-theme.json"
},
{
"id": "yuan-hundred-dark",
"label": "壹佰元 (¥100) Dark",
"uiTheme": "vs-dark",
"path": "./themes/yuan-hundred-dark-color-theme.json"
}
]
},
"scripts": {
"generate": "node scripts/generate-themes.mjs",
"test": "node scripts/validate-theme.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/i-shm/Yuan.git"
},
"devDependencies": {
"sharp": "^0.34.5"
},
"icon": "icon.png"
}