-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.12 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
{
"name": "idx-monospace-theme",
"displayName": "Monospace Theme",
"description": "A minimalistic Visual Studio Code theme with subtle purple accents..",
"version": "1.3.3",
"author": {
"name": "Keksi",
"email": "contact@keksi.me"
},
"publisher": "keksiqc",
"license": "MIT",
"repository": "https://github.com/keksiqc/monospace-theme",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Themes"
],
"keywords": [
"idx",
"theme",
"dark",
"light",
"google",
"purple",
"monospace",
"monospace-theme",
"idx-theme"
],
"icon": "assets/icon.png",
"contributes": {
"iconThemes": [
{
"id": "monospace-icons",
"label": "Monospace Icons",
"path": "./icons/monospace-icon-theme.json"
}
],
"themes": [
{
"label": "Monospace Dark",
"uiTheme": "vs-dark",
"path": "./themes/monospace-dark.json"
},
{
"label": "Monospace Light",
"uiTheme": "vs",
"path": "./themes/monospace-light.json"
}
]
},
"devDependencies": {
"@biomejs/biome": "1.5.3"
}
}