-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
144 lines (144 loc) · 3.92 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "one-hunter",
"displayName": "One Hunter Theme",
"description": "A VSCode theme inspired by Vercel Theme and One Dark Pro",
"publisher": "RaillyHugo",
"version": "1.4.0",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "One Hunter Theme",
"uiTheme": "vs-dark",
"path": "./themes/OneHunter-Classic-color-theme.json"
},
{
"label": "One Hunter Theme Material",
"uiTheme": "vs-dark",
"path": "./themes/OneHunter-Material-color-theme.json"
},
{
"label": "One Hunter Theme Vercel",
"uiTheme": "vs-dark",
"path": "./themes/OneHunter-Vercel-color-theme.json"
},
{
"label": "One Hunter Theme Light",
"uiTheme": "vs",
"path": "./themes/OneHunter-Light-color-theme.json"
},
{
"label": "One Hunter Flexoki Dark",
"uiTheme": "vs-dark",
"path": "./themes/OneHunter-Flexoki-Dark-color-theme.json"
},
{
"label": "One Hunter Flexoki Light",
"uiTheme": "vs",
"path": "./themes/OneHunter-Flexoki-Light-color-theme.json"
},
{
"label": "Flexoki Dark",
"uiTheme": "vs-dark",
"path": "./themes/Flexoki-Dark-color-theme.json"
},
{
"label": "Flexoki Light",
"uiTheme": "vs",
"path": "./themes/Flexoki-Light-color-theme.json"
},
{
"label": "Vercel 2024 Light",
"uiTheme": "vs",
"path": "./themes/Vercel2024-Light-color-theme.json"
},
{
"label": "Vercel 2024 Dark",
"uiTheme": "vs-dark",
"path": "./themes/Vercel2024-Dark-color-theme.json"
}
]
},
"configuration": {
"title": "One Hunter Theme",
"properties": {
"one-hunter.editorTheme": {
"type": "string",
"default": "classic",
"markdownDescription": "%description.one-hunter.editorTheme%",
"enum": [
"classic",
"material",
"vercel",
"light",
"one-hunter-flexoki-dark",
"one-hunter-flexoki-light",
"original-flexoki-dark",
"original-flexoki-light",
"vercel-2024-light",
"vercel-2024-dark"
],
"enumDescriptions": [
"Classic",
"Material",
"Vercel",
"Light",
"One Hunter Flexoki Dark",
"One Hunter Flexoki Light",
"Flexoki Dark",
"Flexoki Light",
"Vercel 2024 Light",
"Vercel 2024 Dark"
],
"description": "Select the theme variant"
}
}
},
"keywords": [
"color-theme",
"theme",
"one hunter",
"hunter",
"one dark",
"one dark pro",
"vercel",
"vercel theme",
"flexoki"
],
"icon": "icon.png",
"homepage": "https://github.com/Railly/one-hunter-vscode/blob/main/README.md",
"bugs": {
"url": "https://github.com/Railly/one-hunter-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Railly/one-hunter-vscode.git"
},
"scripts": {
"generate:vscode": "ts-node --project src/tsconfig.json src/generators/generate-theme.ts",
"generate:iterm2": "ts-node --project src/tsconfig.json src/generators/generate-iterm2-theme.ts",
"generate": "npm run generate:vscode && npm run generate:iterm2",
"build:ts": "tsc -p src",
"build:theme": "npm run generate",
"build": "npm run build:ts && npm run build:theme",
"package": "vsce package",
"publish:ovsx": "dotenv -- bash -c 'ovsx publish -p \"$OVSX_TOKEN\"'",
"publish:vsce": "vsce publish",
"publish": "npm run publish:vsce && npm run publish:ovsx"
},
"devDependencies": {
"@types/node": "^18.11.18",
"dotenv-cli": "^7.4.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/vscode": "^1.74.0"
}
}