-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "vscode-theme-oxforddark",
"version": "1.1.2",
"displayName": "Oxford Dark",
"description": "A deep Oxford Dark theme for VSCode",
"publisher": "trystendsmyth",
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js",
"format": "prettier-standard --format",
"lint:build": "node ./scripts/lint.js",
"lint": "prettier-standard --lint",
"package": "mkdir -p bin && vsce package --out bin/",
"vscode:prepublish": "npm run build",
"vsce-publish": "vsce publish"
},
"repository": {
"type": "git",
"url": "https://github.com/trystendsmyth/vscode-theme-oxforddark"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Themes"
],
"keywords": [
"oxford",
"theme",
"dark"
],
"contributes": {
"themes": [
{
"label": "Oxford Dark",
"uiTheme": "vs-dark",
"path": "./themes/oxford-dark-color-theme.json"
}
]
},
"icon": "icon.png",
"galleryBanner": {
"color": "#002447",
"theme": "dark"
},
"lint-staged": {
"*": [
"prettier-standard --lint"
]
},
"devDependencies": {
"js-yaml": "^4.1.0",
"prettier-standard": "^16.4.1",
"vsce": "^2.10.0"
}
}