-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
114 lines (114 loc) · 3.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gradient-theme",
"displayName": "Gradient Theme",
"description": "Multiple beautiful gradient themes",
"version": "1.13.0",
"author": "shaobeichen",
"publisher": "shaobeichen",
"icon": "./icon.png",
"repository": {
"type": "git",
"url": "https://github.com/shaobeichen/gradient-theme"
},
"engines": {
"vscode": "^1.33.0"
},
"keywords": [
"gradient",
"theme",
"渐变",
"Bearded",
"Dracula",
"Monokai",
"Monokai Pro",
"Atom One Dark"
],
"categories": [
"Themes"
],
"main": "./src/extension.js",
"contributes": {
"themes": [
{
"label": "Gradient Dracula Theme",
"uiTheme": "vs-dark",
"path": "./themes/gradient-dracula-theme.json"
},
{
"label": "Gradient Bearded Theme Arc",
"uiTheme": "vs-dark",
"path": "./themes/gradient-bearded-theme-arc.json"
},
{
"label": "Gradient Monokai Pro Classic",
"uiTheme": "vs-dark",
"path": "./themes/gradient-monokai-pro-classic.json"
},
{
"label": "Gradient Monokai Pro",
"uiTheme": "vs-dark",
"path": "./themes/gradient-monokai-pro.json"
},
{
"label": "Gradient Atom One Dark",
"uiTheme": "vs-dark",
"path": "./themes/gradient-atom-one-dark.json"
},
{
"label": "Gradient Modern Dark",
"uiTheme": "vs-dark",
"path": "./themes/gradient-modern-dark/dark-modern.json"
}
],
"commands": [
{
"command": "extension.enable",
"title": "Gradient Theme: Enable Gradient"
},
{
"command": "extension.disable",
"title": "Gradient Theme: Disable Gradient"
}
],
"configuration": {
"title": "Gradient Theme",
"properties": {
"gradientTheme.css": {
"type": "array",
"default": [
{
"enable": false,
"css": ""
}
],
"description": "custom css for the gradient theme"
}
}
}
},
"activationEvents": [
"onCommand:extension.enable",
"onCommand:extension.disable"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.4",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@vscode/vsce": "^3.1.0",
"sass": "^1.78.0",
"semantic-release": "^24.1.1",
"semantic-release-vsce": "^5.7.4"
},
"scripts": {
"dev": "node scripts/build.js",
"release": "node scripts/release.js",
"publish": "vsce publish --no-dependencies"
},
"vsce": {
"dependencies": false
}
}