forked from drcmda/poimandres-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.44 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
{
"name": "pmndrs",
"icon": "assets/pmndrs.png",
"displayName": "poimandres",
"description": "poimandres dark theme",
"version": "0.3.5",
"keywords": [
"poimandres",
"pmndrs",
"vsc",
"dark",
"theme"
],
"files": [
"index.js"
],
"scripts": {
"dev": "node src/watcher"
},
"author": "Paul Henschel",
"publisher": "pmndrs",
"license": "MIT",
"bugs": {
"url": "https://github.com/drcmda/poimandres-theme/issues"
},
"homepage": "https://github.com/drcmda/poimandres-theme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/poimandres-theme.git"
},
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "poimandres",
"uiTheme": "vs-dark",
"path": "./themes/poimandres-color-theme.json"
},
{
"label": "poimandres-noitalics",
"uiTheme": "vs-dark",
"path": "./themes/poimandres-color-theme-noitalics.json"
},
{
"label": "poimandres-storm",
"uiTheme": "vs-dark",
"path": "./themes/poimandres-color-theme-storm.json"
},
{
"label": "poimandres-noitalics-storm",
"uiTheme": "vs-dark",
"path": "./themes/poimandres-color-theme-noitalics-storm.json"
}
]
},
"devDependencies": {
"filewatcher": "^3.0.1",
"prettier": "^2.2.1",
"sharp": "^0.28.0"
}
}