forked from antfu/vscode-theme-vitesse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.88 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
{
"name": "theme-vitesse",
"displayName": "Vitesse Theme",
"version": "0.6.4",
"packageManager": "[email protected]",
"description": "Vitesse theme for VS Code",
"categories": [
"Themes"
],
"keywords": [
"theme",
"vitesse",
"light",
"dark"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vscode-theme-vitesse"
},
"files": [
"themes"
],
"bugs": {
"url": "https://github.com/antfu/vscode-theme-vitesse/issues"
},
"publisher": "antfu",
"scripts": {
"build": "esno src/index.ts",
"dev": "nodemon --watch src -e ts --exec \"esno src/index.ts\"",
"vscode:prepublish": "npm run build",
"lint": "eslint .",
"release": "npm run build && npx bumpp --commit --tag --push --all && vsce publish --no-dependencies"
},
"contributes": {
"themes": [
{
"label": "Vitesse Light",
"uiTheme": "vs",
"path": "./themes/vitesse-light.json"
},
{
"label": "Vitesse Dark",
"uiTheme": "vs-dark",
"path": "./themes/vitesse-dark.json"
},
{
"label": "Vitesse Black",
"uiTheme": "vs-dark",
"path": "./themes/vitesse-black.json"
},
{
"label": "Vitesse Light Soft",
"uiTheme": "vs",
"path": "./themes/vitesse-light-soft.json"
},
{
"label": "Vitesse Dark Soft",
"uiTheme": "vs-dark",
"path": "./themes/vitesse-dark-soft.json"
}
]
},
"devDependencies": {
"@antfu/eslint-config": "^0.19.4",
"@antfu/utils": "^0.5.0",
"@types/color": "^3.0.3",
"@types/node": "^17.0.23",
"color": "^4.2.3",
"eslint": "^8.12.0",
"esno": "^0.14.1",
"nodemon": "^2.0.15",
"tsup": "^5.12.4",
"typescript": "^4.6.3",
"vsce": "^2.7.0"
},
"engines": {
"vscode": "^1.43.0"
},
"icon": "icon.png",
"preview": true
}