This repository was archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.38 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.38 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
{
"name": "base24",
"version": "0.3.0",
"icon": "readme-assets/icons/square.png",
"displayName": "Base24 Tinted Themes",
"description": "Base24 for VSCode",
"publisher": "FredHappyface",
"license": "MIT",
"homepage": "https://github.com/Base24/base24-vscode",
"repository": "https://github.com/Base24/base24-vscode",
"bugs": "https://github.com/Base24/base24-vscode/issues",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Themes"
],
"keywords": [
"base24",
"color"
],
"scripts": {
"lint": "eslint .",
"update:packagejson:themes": "node ./scripts/updateWithLatestThemes.js",
"update:packagejson:version": "node ./scripts/minorVersionBump.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jsonc-parser": "^3.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"contributes": {
"themes": [
{
"label": "base24-brogrammer.",
"uiTheme": "vs-dark",
"path": "./themes/base24-brogrammer..json"
},
{
"label": "base24-chalk.",
"uiTheme": "vs-dark",
"path": "./themes/base24-chalk..json"
},
{
"label": "base24-dracula.",
"uiTheme": "vs-dark",
"path": "./themes/base24-dracula..json"
},
{
"label": "base24-espresso.",
"uiTheme": "vs-dark",
"path": "./themes/base24-espresso..json"
},
{
"label": "base24-flat.",
"uiTheme": "vs-dark",
"path": "./themes/base24-flat..json"
},
{
"label": "base24-framer.",
"uiTheme": "vs-dark",
"path": "./themes/base24-framer..json"
},
{
"label": "base24-github.",
"uiTheme": "vs-dark",
"path": "./themes/base24-github..json"
},
{
"label": "base24-hardcore.",
"uiTheme": "vs-dark",
"path": "./themes/base24-hardcore..json"
},
{
"label": "base24-one-black.",
"uiTheme": "vs-dark",
"path": "./themes/base24-one-black..json"
},
{
"label": "base24-one-dark.",
"uiTheme": "vs-dark",
"path": "./themes/base24-one-dark..json"
},
{
"label": "base24-one-light.",
"uiTheme": "vs-dark",
"path": "./themes/base24-one-light..json"
}
]
}
}