-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "liquid-ray",
"displayName": "Liquid Ray",
"description": "a unibody vscode theme ",
"version": "1.1.3",
"icon": "icon.png",
"galleryBanner": {
"color": "#252526",
"theme": "dark"
},
"publisher": "wiidede",
"author": {
"name": "wiidede",
"url": "https://github.com/wiidede",
"email": "wiixdede@gmail.com"
},
"repository": {
"url": "https://github.com/wiidede/Liquid-Ray"
},
"engines": {
"vscode": "^1.71.0"
},
"categories": [
"Themes"
],
"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"
}
]
},
"scripts": {
"build": "esno src/index.ts",
"dev": "nodemon --watch src -e ts --exec \"esno src/index.ts\"",
"vscode:prepublish": "pnpm run build",
"lint": "eslint .",
"release": "pnpm run build && npx bumpp --commit --tag --push --all && vsce publish --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"devDependencies": {
"@antfu/eslint-config": "^0.19.4",
"@types/node": "^17.0.23",
"bumpp": "^9.1.1",
"eslint": "^8.12.0",
"esno": "^0.14.1",
"nodemon": "^2.0.15",
"tsup": "^5.12.4",
"typescript": "^4.6.3",
"vsce": "^2.7.0"
}
}