-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"publisher": "xiaoluabei",
"name": "xiaoluabei-vscode-theme",
"displayName": "Xiaolu Abei",
"type": "module",
"version": "2.1.2",
"description": "A dark theme with a focus on readability and minimalism.",
"author": {
"name": "Xiaolu Abei",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abeixiaolu/xiaoluabei-vscode-theme.git"
},
"categories": [
"Themes"
],
"icon": "icon.png",
"engines": {
"vscode": "^1.43.0"
},
"contributes": {
"themes": [
{
"label": "Xiaolu Abei Dark",
"uiTheme": "vs-dark",
"path": "./themes/Xiaolu Abei-color-theme.json"
},
{
"label": "Xiaolu Abei Dark Italic",
"uiTheme": "vs-dark",
"path": "./themes/Xiaolu Abei Dark Italic-color-theme.json"
},
{
"label": "Xiaolu Abei Soft",
"uiTheme": "vs-dark",
"path": "./themes/Xiaolu Abei Soft-color-theme.json"
},
{
"label": "Xiaolu Abei Soft Italic",
"uiTheme": "vs-dark",
"path": "./themes/Xiaolu Abei Soft Italic-color-theme.json"
},
{
"label": "Xiaolu Abei Light",
"uiTheme": "vs",
"path": "./themes/Xiaolu Abei Light-color-theme.json"
},
{
"label": "Xiaolu Abei Light Italic",
"uiTheme": "vs",
"path": "./themes/Xiaolu Abei Light Italic-color-theme.json"
},
{
"label": "Xiaolu Abei Light Soft",
"uiTheme": "vs",
"path": "./themes/Xiaolu Abei Light Soft-color-theme.json"
},
{
"label": "Xiaolu Abei Light Soft Italic",
"uiTheme": "vs",
"path": "./themes/Xiaolu Abei Light Soft Italic-color-theme.json"
}
]
},
"scripts": {
"build": "esno scripts/build.ts",
"dev": "esno watch scripts/build.ts",
"pack": "npm run build && vsce pack --no-dependencies",
"publish": "npm run build && vsce publish --no-dependencies",
"release": "bumpp && npm run publish",
"lint": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@types/node": "^22.10.2",
"@vscode/vsce": "^3.2.1",
"bumpp": "^9.8.1",
"eslint": "^9.17.0",
"esno": "^4.7.0",
"typescript": "^5.7.2"
}
}