-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.56 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
{
"name": "transylvania",
"version": "1.5.1",
"displayName": "Transylvania",
"homepage": "http://matheusps.github.io/transylvania",
"description": "Darker dracula-based vscode themes",
"publisher": "matheusps",
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js",
"lint": "node ./scripts/lint.js",
"package": "vsce package -o ./bin/transylvania.vsix",
"vscode:prepublish": "npm run build",
"vsce-publish": "vsce publish"
},
"maintainers": [
"Matheus P Silva <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/matheusps/transylvania.git"
},
"bugs": {
"url": "https://github.com/matheusps/transylvania/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Themes"
],
"keywords": [
"transylvania",
"theme",
"dracula",
"color-theme",
"dark-theme"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#22212C",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Transylvania",
"uiTheme": "vs-dark",
"path": "./theme/transylvania.json"
},
{
"label": "Transylvania Long Night [BETA]",
"uiTheme": "vs-dark",
"path": "./theme/longnight.json"
}
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"js-yaml": "^3.13.1",
"prettier": "^2.0.4",
"vsce": "^1.74.0"
}
}