-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.93 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
{
"name": "space-rider",
"displayName": "Space Rider",
"icon": "images/icon-v2.png",
"description": "Um tema escuro elegante inspirado em Cowboy Bebop, com cores quentes e contrastantes para uma experiência única no VS Code.",
"version": "1.0.0",
"publisher": "gabrielnathan",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:theme": "node dist/build.js",
"build:all": "npm run build && npm run build:theme",
"lint": "tsc -p tsconfig.json --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"author": {
"name": "Gabriel Nathan",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gabrielnathan/space-rider-vscode-theme.git"
},
"engines": {
"vscode": ">=1.50.0"
},
"categories": [
"Themes"
],
"devDependencies": {
"@types/node": "^20.11.24",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"contributes": {
"themes": [
{
"label": "Space Rider Base",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-color-theme.json"
},
{
"label": "Space Rider High Contrast",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-high-contrast-color-theme.json"
},
{
"label": "Space Rider High Contrast Soft",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-high-contrast-soft-color-theme.json"
},
{
"label": "Space Rider High Contrast Vivid",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-high-contrast-vivid-color-theme.json"
},
{
"label": "Space Rider Soft",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-soft-color-theme.json"
},
{
"label": "Space Rider Vivid",
"uiTheme": "vs-dark",
"path": "./themes/space-rider-vivid-color-theme.json"
}
]
}
}