forked from bceskavich/dracula-at-night
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
{
"name": "theme-dracula-at-night",
"version": "2.7.1",
"displayName": "Dracula At Night",
"description": "Dracula At Night — A Dracula fork, with a darker flavor",
"publisher": "bceskavich",
"license": "MIT",
"scripts": {
"clean": "rm -rf build",
"compile": "yarn run clean && tsc",
"build": "mkdir -p ./theme && ts-node ./src/build.ts",
"attach": "./bootstrap.sh attach",
"eject": "./bootstrap.sh eject",
"dev": "yarn run eject && yarn run build && yarn run attach",
"vscode:prepublish": "yarn run build",
"format": "prettier --write 'src/**/*.ts'"
},
"maintainers": [
"Billy Ceskavich <[email protected]>"
],
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/bceskavich/dracula-at-night.git"
},
"bugs": {
"url": "https://github.com/bceskavich/dracula-at-night/issues"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"dracula",
"dark",
"theme",
"color-theme"
],
"icon": "dracula-at-night.png",
"galleryBanner": {
"color": "#0e1419",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Dracula At Night",
"uiTheme": "vs-dark",
"path": "./theme/dracula-at-night.json"
}
]
},
"devDependencies": {
"@types/node": "^10.5.8",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.0.1"
},
"__metadata": {
"id": "86fa6593-3f3e-484c-b7cd-00ba7c91c23f",
"publisherDisplayName": "bceskavich",
"publisherId": "72f2d502-2860-40d3-8a46-47cbf8a5d495"
}
}