-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 Bytes
/
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
{
"name": "noir-vs-code-theme",
"displayName": "Noir VS Code Theme",
"description": "🕵🏻 Noir is like a mysterious night in an old film noir, with its dark, monochromatic tones setting the stage for thrilling code adventures. It's the perfect theme to turn your coding sessions into suspenseful detective stories!",
"version": "1.5.0",
"license": "MIT",
"icon": "images/icon/noir.png",
"repository": {
"type": "git",
"url": "https://github.com/SenpaiSumpie/Noir"
},
"publisher": "SectorZ",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Themes"
],
"keywords": [
"Noir",
"Detective",
"Dark Theme"
],
"contributes": {
"themes": [
{
"label": "Noir Dark",
"uiTheme": "vs-dark",
"path": "./themes/Noir-dark-color-theme.json"
},
{
"label": "Noir Light",
"uiTheme": "vs",
"path": "./themes/Noir-light-color-theme.json"
}
]
}
}