forked from dracula/visual-studio-code
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) Β· 2.31 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dracula-dot-min",
"version": "2.1.0",
"description": "Dracula minified π¦ Less GUI, more code β Minimal π Dark & π Light themes",
"keywords": [
"dracula flat",
"dracula.min",
"dracula",
"minimal",
"borderless",
"no borders",
"no-borders",
"flat",
"solid",
"seamless"
],
"homepage": "https://github.com/ashrafhadden/dracula.min",
"bugs": {
"url": "https://github.com/ashrafhadden/dracula.min/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ashrafhadden/dracula.min"
},
"license": "MIT",
"author": {
"name": "Ashraf Hadden",
"email": "[email protected]",
"url": "https://github.com/ashrafhadden"
},
"contributors": [
"Ashraf Hadden",
"Zeno Rocha",
"Derek P Sifford",
"Krzysztof Wisznarewski",
"Daniel Ramos",
"Eric Jackson",
"Elliott Pogue",
"Ajit Singh",
"Teddy Bradford"
],
"scripts": {
"build": "node ./scripts/build.js",
"lint": "node ./scripts/lint.js",
"start": "vsce package && code --install-extension ${npm_package_name}-${npm_package_version}.vsix",
"test": "node ./scripts/test.js",
"vscode:prepublish": "npm update && npm run build"
},
"devDependencies": {
"chroma-js": "^2.0.3",
"js-yaml": "^3.13.1"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Dracula.min",
"uiTheme": "vs-dark",
"path": "./themes/dracula-dot-min.json"
},
{
"label": "Dracula.min Light",
"uiTheme": "vs",
"path": "./themes/dracula-dot-min-light.json"
},
{
"label": "Dracula.min Light Darker",
"uiTheme": "vs",
"path": "./themes/dracula-dot-min-light-darker.json"
},
{
"label": "Dracula.min White",
"uiTheme": "vs",
"path": "./themes/dracula-dot-min-white.json"
},
{
"label": "Dracula.min White Darker",
"uiTheme": "vs",
"path": "./themes/dracula-dot-min-white-darker.json"
}
]
},
"displayName": "Dracula.min",
"galleryBanner": {
"color": "#282A36",
"theme": "dark"
},
"icon": "icon.png",
"maintainers": [
"Ashraf Hadden <[email protected]>"
],
"publisher": "ashrafhadden"
}