-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
190 lines (190 loc) · 5.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "catppuccin-vsc",
"license": "MIT",
"private": true,
"displayName": "Catppuccin for VSCode",
"publisher": "Catppuccin",
"description": "🦌 Soothing pastel theme for VSCode",
"version": "3.16.0",
"type": "module",
"engines": {
"vscode": "^1.80.0",
"node": ">=20.0.0"
},
"categories": [
"Themes"
],
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"main": "dist/main.cjs",
"browser": "dist/browser.cjs",
"contributes": {
"themes": [
{
"label": "Catppuccin Mocha",
"uiTheme": "vs-dark",
"path": "./themes/mocha.json"
},
{
"label": "Catppuccin Macchiato",
"uiTheme": "vs-dark",
"path": "./themes/macchiato.json"
},
{
"label": "Catppuccin Frappé",
"uiTheme": "vs-dark",
"path": "./themes/frappe.json"
},
{
"label": "Catppuccin Latte",
"uiTheme": "vs",
"path": "./themes/latte.json"
}
],
"configuration": {
"title": "Catppuccin",
"properties": {
"catppuccin.boldKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use **bold** for keywords."
},
"catppuccin.italicComments": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for comments."
},
"catppuccin.italicKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for keywords."
},
"catppuccin.colorOverrides": {
"type": "object",
"default": {},
"markdownDescription": "Custom color overrides. Assign your own hex codes to palette colors. See [the docs](https://github.com/catppuccin/vscode#override-palette-colors) for reference.",
"$ref": "https://esm.sh/gh/catppuccin/vscode@catppuccin-vsc-v3.15.2/packages/catppuccin-vsc/schemas/colorOverrides.schema.json"
},
"catppuccin.customUIColors": {
"type": "object",
"default": {},
"markdownDescription": "Customize UI colors. Map `workbench.colorCustomizations` to palette colors. See [the docs](https://github.com/catppuccin/vscode#use-palette-colors-on-workbench-elements-ui) for reference.",
"$ref": "https://esm.sh/gh/catppuccin/vscode@catppuccin-vsc-v3.15.2/packages/catppuccin-vsc/schemas/customUIColors.schema.json"
},
"catppuccin.accentColor": {
"type": "string",
"default": "mauve",
"description": "Controls which accent color to use.",
"enum": [
"rosewater",
"flamingo",
"pink",
"mauve",
"red",
"maroon",
"peach",
"yellow",
"green",
"teal",
"sky",
"sapphire",
"blue",
"lavender"
]
},
"catppuccin.workbenchMode": {
"type": "string",
"default": "default",
"description": "Controls how the workbench should be styled.",
"enum": [
"default",
"flat",
"minimal"
],
"enumDescriptions": [
"The default look, using 3 shades of the base color.",
"A more flat look, using 2 shades of the base color.",
"A minimal look, using 1 shade of the base color."
]
},
"catppuccin.bracketMode": {
"type": "string",
"default": "rainbow",
"description": "Controls how bracket pairs should be themed",
"enum": [
"rainbow",
"dimmed",
"monochromatic",
"neovim"
],
"enumDescriptions": [
"Uses 6 rainbow colors for matching bracket pairs.",
"Uses the same 6 rainbow colors as `rainbow`, but has a dimmed appearance.",
"A monochromatic, grey appearance for matching bracket pairs.",
"Uses the same bracket pair colors as our neovim port."
]
},
"catppuccin.extraBordersEnabled": {
"type": "boolean",
"default": false,
"description": "Controls whether borders should be enabled on some additional UI elements."
},
"catppuccin.syncWithIconPack": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to sync the currently active Catppuccin flavor with the [Catppuccin Icon Pack](https://github.com/catppuccin/vscode-icons)"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/catppuccin/vscode.git",
"directory": "packages/catppuccin-vsc"
},
"bugs": {
"url": "https://github.com/catppuccin/vscode/issues"
},
"sponsor": {
"url": "https://opencollective.com/catppuccin"
},
"icon": "icon.png",
"__metadata": {
"publisherDisplayName": "Catppuccin",
"publisherId": "e7d2ed61-53e0-4dd4-afbe-f536c3bb4316",
"id": "69264e4d-cd3b-468a-8f2b-e69673c7d864",
"isPreReleaseVersion": false
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@catppuccin/palette": "^1.7.1",
"@catppuccin/vsc-typegen": "workspace:*",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^20.12.7",
"@types/tinycolor2": "^1.4.6",
"@types/vscode": "~1.80.0",
"@vscode/vsce": "^3.0.0",
"tinycolor2": "^1.6.0",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"type-flag": "^3.0.0",
"typescript": "^5.4.5"
},
"scripts": {
"core:build": "tsx build.ts",
"core:build-ads": "tsx build.ts --ads",
"core:dev": "tsx build.ts --dev"
},
"homepage": "https://github.com/catppuccin/vscode/tree/main/packages/catppuccin-vsc#readme"
}