-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.38 KB
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
{
"name": "yithemes",
"version": "1.0.0",
"description": "Atom One Dark & One Light themes ported for VS Code.",
"keywords": [
"theme",
"onedark",
"one-dark",
"one dark"
],
"license": "ISC",
"author": "Wang Weixuan <wangweixvan@gmail.com>",
"repository": "https://github.com/wangweixuan/yithemes.git",
"private": true,
"scripts": {
"lint": "prettier --write --config src/.prettierrc.json src/*.ts",
"prepare": "tsc -p src && node dist/intermediate",
"pretest": "tsc -p src && node dist/intermediate",
"test": "code --extensionDevelopmentPath=$PWD"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/tinycolor2": "^1.4.6",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"tinycolor2": "^1.6.0",
"typescript": "^5.9.3"
},
"displayName": "Yi Dark & Yi Light Themes",
"publisher": "wangweixuan",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Yi Dark",
"uiTheme": "vs-dark",
"path": "dist/dark.json"
},
{
"label": "Yi Light",
"uiTheme": "vs",
"path": "dist/light.json"
}
],
"markdown.previewStyles": [
"dist/markdown.css"
]
},
"icon": "graphics/logo.png",
"galleryBanner": {
"color": "#282C34",
"theme": "dark"
},
"extensionKind": [
"ui"
]
}