-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "vscode-light-plus-plus",
"displayName": "VSCode Light++",
"description": "VSCode light+ default theme with a few mini changes (add sidebar border, tab border,...)",
"license": "MIT",
"version": "1.1.0",
"publisher": "kytosai",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kytosai/vscode-light-plus-plus"
},
"bugs": {
"url": "https://github.com/kytosai/vscode-light-plus-plus/issues"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Themes"
],
"keywords": [
"vscode",
"light",
"default",
"theme",
"plus",
"border"
],
"contributes": {
"themes": [
{
"label": "VSCode Light++",
"uiTheme": "vs",
"path": "./themes/vscode-light-plus-plus.json"
}
]
},
"scripts": {
"dev": "nodemon --watch src src/index.js",
"build": "node src/index.js",
"json": "json5 ./light_plus.json -o cc.json",
"vscode:publish": "vsce publish",
"update-vscode-default-theme": "curl https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-defaults/themes/light_vs.json -o ./src/themes/vscode-default/light_vs.json && curl https://raw.githubusercontent.com/microsoft/vscode/main/extensions/theme-defaults/themes/light_plus.json -o ./src/themes/vscode-default/light_plus.json"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"dependencies": {
"json5": "^2.2.0"
}
}