-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "taiga-theme",
"displayName": "Taiga Theme",
"description": "A theme for VSCode theme - with light and dark modes",
"publisher": "joshdales",
"icon": "logo.png",
"license": "MIT",
"galleryBanner": {
"color": "#000924",
"theme": "dark"
},
"version": "3.0.0",
"engines": {
"vscode": "^1.40.0"
},
"repository": {
"type": "git",
"url": "https://github.com/joshdales/taiga-vs-code-theme"
},
"bugs": {
"url": "https://github.com/joshdales/taiga-vs-code-theme/issues"
},
"homepage": "https://github.com/joshdales/taiga-vs-code-theme",
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark theme",
"light theme",
"taiga",
"italics"
],
"contributes": {
"themes": [
{
"label": "Taiga",
"uiTheme": "vs-dark",
"path": "./themes/dark-color-theme.json"
},
{
"label": "Taiga Light",
"uiTheme": "vs",
"path": "./themes/light-color-theme.json"
}
]
},
"scripts": {
"build": "node src/buildTheme.js",
"publish": "vsce publish",
"watch": "node --watch-path=./src ./src/buildTheme.js"
},
"devDependencies": {
"@vscode/vsce": "^2.24.0",
"json5": "^2.2.3",
"mustache": "^4.2.0"
}
}