-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "rouge-theme",
"displayName": "Rouge Theme",
"author": "Josef Aidt <[email protected]>",
"description": "Warm and cozy dark theme for VSCode",
"publisher": "josef",
"private": true,
"version": "2.1.6",
"homepage": "https://github.com/josefaidt/rouge-theme/readme.md",
"repository": {
"type": "git",
"url": "https://github.com/josefaidt/rouge-theme.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "bd dev",
"build": "bd build",
"pkg": "yarn build; vsce package"
},
"eslintConfig": {
"extends": "@josefaidt/eslint-config"
},
"prettier": "@josefaidt/prettier-config",
"devDependencies": {
"@josefaidt/eslint-config": "^0.1.14",
"@josefaidt/prettier-config": "^0.0.2",
"eslint": "^7.4.0",
"prettier": "^2.0.5",
"vsce": "^1.77.0",
"@rouge/builder": "*"
},
"contributes": {
"themes": [
{
"label": "Rouge 2",
"uiTheme": "vs-dark",
"path": "./out/rouge2/rouge2.json"
},
{
"label": "Rouge",
"uiTheme": "vs-dark",
"path": "./out/rouge/rouge-theme.json"
},
{
"label": "Rouge No Italics",
"uiTheme": "vs-dark",
"path": "./out/rouge-no-italics/rouge-no-italics.json"
}
]
},
"engines": {
"vscode": "^1.22.0"
},
"bugs": {
"url": "https://github.com/josefaidt/rouge-theme/issues"
},
"categories": [
"Themes"
],
"keywords": [
"rouge",
"dark",
"theme",
"color-theme"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#172030",
"theme": "dark"
}
}