-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.84 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
{
"name": "codeo",
"displayName": "Codeo Theme",
"description": "Codeo is a dynamic and visually stunning Visual Studio Code theme designed to improve focus and productivity. Codeo's clean design, rich color palette, and intuitive contrast provide a seamless coding experience for developers of all skill levels.",
"version": "1.2.0",
"publisher": "JithinVijayan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itsmeJithin/codeo"
},
"keywords": [
"Theme",
"Dark Theme",
"Light Theme",
"Codeo",
"Codeo Light",
"Accessible Theme"
],
"scripts": {
"build": "ts-node src/build-theme.ts",
"publish": "npm run build && vsce publish"
},
"galleryBanner": {
"color": "#1E2A39",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes"
],
"icon": "codeo-dark.png",
"contributes": {
"themes": [
{
"label": "Codeo",
"uiTheme": "vs-dark",
"path": "./themes/codeo-color-theme.json"
},
{
"label": "Codeo (No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/codeo-color-theme-noitalic.json"
},
{
"label": "Codeo Light",
"uiTheme": "vs",
"path": "./themes/codeo-color-theme.json"
},
{
"label": "Codeo Light (No Italics)",
"uiTheme": "vs",
"path": "./themes/codeo-light-color-theme-noitalic.json"
}
]
},
"devDependencies": {
"@types/node": "^22.16.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"fs-extra": "^11.2.0"
}
}