-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.21 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"publisher": "wiidede",
"name": "liquid-ray",
"displayName": "Liquid Ray",
"version": "1.5.0",
"packageManager": "pnpm@10.32.1",
"description": "A seamless colorful unibody vscode theme inspired by Pantone GG1504A",
"galleryBanner": {
"color": "#252526",
"theme": "dark"
},
"author": {
"name": "wiidede",
"url": "https://github.com/wiidede",
"email": "wiixdede@gmail.com"
},
"license": "MIT",
"repository": {
"url": "https://github.com/wiidede/Liquid-Ray"
},
"keywords": [
"seamless",
"colorful",
"vscode theme",
"unibody",
"theme",
"light",
"dark"
],
"categories": [
"Themes"
],
"icon": "icon.png",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"icon.png",
"themes/*"
],
"engines": {
"vscode": "^1.71.0"
},
"contributes": {
"themes": [
{
"label": "Liquid Ray",
"uiTheme": "vs-dark",
"path": "./themes/liquid-ray-theme.json"
},
{
"label": "Liquid Ray Light",
"uiTheme": "vs",
"path": "./themes/liquid-ray-light.json"
},
{
"label": "Liquid Ray Pink",
"uiTheme": "vs-dark",
"path": "./themes/liquid-ray-dark-pink.json"
},
{
"label": "Liquid Ray Light Pink",
"uiTheme": "vs",
"path": "./themes/liquid-ray-light-pink.json"
},
{
"label": "Liquid Ray Soft Pink ",
"uiTheme": "vs",
"path": "./themes/liquid-ray-soft-pink.json"
},
{
"label": "Liquid Ray Softer Pink ",
"uiTheme": "vs",
"path": "./themes/liquid-ray-softer-pink.json"
}
]
},
"scripts": {
"build": "tsx src/index.ts",
"dev": "nodemon --exec tsx --watch src --ext ts,tsx,json src/index.ts",
"vscode:prepublish": "pnpm run build",
"lint": "eslint .",
"release": "bumpp --all",
"package": "vsce package --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"@types/node": "^25.5.0",
"@vscode/vsce": "^3.7.1",
"bumpp": "^11.0.1",
"eslint": "^10.0.3",
"nodemon": "^3.1.14",
"pnpm": "^10.32.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}