-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 905 Bytes
/
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
{
"name": "bright-night",
"displayName": "Bright night",
"description": "Accessible and bright dark theme. Ideal for night coders",
"license": "MIT",
"version": "0.0.4",
"publisher": "sh7dm",
"repository": {
"type": "git",
"url": "https://github.com/sh7dm/bright-night.git"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Bright night",
"uiTheme": "vs-dark",
"path": "./themes/bright-night-color-theme.json"
}
]
},
"scripts": {
"notes": "conventional-changelog -u -p angular",
"release": "release-it"
},
"devDependencies": {
"conventional-changelog": "^3.1.8",
"release-it": "^12.3.0"
},
"release-it": {
"github": {
"release": false,
"changelog": "yarn notes"
},
"npm": {
"publish": false
}
}
}