-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.72 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
{
"name": "win-classic-theme",
"displayName": "WinClassic Theme",
"description": "Windows Classic flavored theme built around MacClassic Theme's color palette",
"version": "0.0.23",
"license": "MIT",
"author": {
"name": "disk0",
"url": "https://github.com/disco0"
},
"publisher": "disk0",
"categories": [
"Themes"
],
"scripts": {
"build:package": "zsh ./scripts/build.sh",
"info:color": "ts-node --project ./scripts/tsconfig.json ./scripts/colorInfo.ts",
"preinfo:color": "yarn --ignore-engines info:color:deps",
"info:color:deps": "command -v ts-node",
"info": "yarn --ignore-engines info:color"
},
"homepage": "https://github.com/disco0/win-classic-theme/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/disco0/win-classic-theme.git"
},
"engines": {
"vscode": "^1.18.0"
},
"icon": "icon/icon.png",
"galleryBanner": {
"color": "#E0DED9",
"theme": "light"
},
"contributes": {
"themes": [
{
"label": "WinClassic",
"uiTheme": "vs",
"path": "./themes/WinClassic-color-theme.json"
}
]
},
"keywords": [
"MacClassic",
"WindowsClassic",
"light",
"theme"
],
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/debug": "^4.1.5",
"@types/node": "^14.11.10",
"@types/vscode": "^1.18.0",
"chalk": "^4.1.0",
"conditional-reduce": "^1.2.0",
"require-jsonc": "^0.1.1"
},
"dependencies": {
"debug": "^4.2.0",
"tsdef": "^0.0.14"
}
}