-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "vscode-intellij-darcula-theme",
"displayName": "IntelliJ IDEA Darcula Theme",
"description": "Visual Studio Code theme based on IntelliJ IDEA Darcula theme",
"version": "1.0.12",
"publisher": "fisenkodv",
"license": "MIT",
"scripts": {
"convert": "ts-node scripts/convert.ts",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^18.15.10",
"axios": "^1.7.4",
"vsce": "2.15.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fisenkodv/vscode-theme-darcula"
},
"bugs": {
"url": "https://github.com/fisenkodv/vscode-theme-darcula/issues"
},
"homepage": "https://github.com/fisenkodv/vscode-theme-darcula",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Themes"
],
"icon": "icon.png",
"keywords": [
"theme",
"darcula",
"intellij",
"typescript",
"javascript"
],
"contributes": {
"themes": [
{
"label": "Darcula",
"uiTheme": "vs-dark",
"path": "./themes/darcula.json"
}
]
}
}