forked from CedricVerlinden/cursor-dark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 842 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 842 Bytes
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
{
"name": "cursor-dark",
"displayName": "Cursor Dark",
"description": "A copy of the Cursor AI editor theme from cursor.sh, repackaged for use in Visual Studio Code without needing the Cursor editor.",
"version": "2.2.0",
"publisher": "cedricverlinden",
"icon": "./images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/CedricVerlinden/cursor-dark"
},
"engines": {
"vscode": "^1.78.2"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"id": "cursor-dark",
"label": "Cursor Dark",
"uiTheme": "vs-dark",
"path": "./themes/cursor-dark.json"
},
{
"id": "cursor-less-dark",
"label": "Cursor Less Dark",
"uiTheme": "vs-dark",
"path": "./themes/cursor-less-dark.json"
}
],
"configurationDefaults": {
"workbench.iconTheme": "vs-seti"
}
}
}