-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 1.86 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
{
"name": "amethyst-theme",
"displayName": "Amethyst Themes",
"description": "A set of purple light and dark themes",
"version": "4.8.0",
"engines": {
"vscode": "^1.63.0"
},
"license": "SEE LICENSE IN LICENSE",
"publisher": "amodio",
"author": {
"name": "Eric Amodio",
"email": "[email protected]"
},
"homepage": "https://github.com/eamodio/vscode-amethyst-theme/#readme",
"bugs": {
"url": "https://github.com/eamodio/vscode-amethyst-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/eamodio/vscode-amethyst-theme.git"
},
"icon": "images/icon.png",
"sponsor": {
"url": "https://github.com/sponsors/eamodio"
},
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#7d16bf",
"theme": "dark"
},
"keywords": [
"theme",
"purple",
"violet",
"dark",
"light"
],
"contributes": {
"themes": [
{
"label": "Amethyst Dark",
"path": "./themes/amethyst-dark-color-theme.json",
"uiTheme": "vs-dark"
},
{
"label": "Amethyst Light",
"uiTheme": "vs",
"path": "./themes/amethyst-light-color-theme.json"
},
{
"label": "Amethyst Dark (Higher Contrast)",
"path": "./themes/amethyst-dark-hc-color-theme.json",
"uiTheme": "vs-dark"
},
{
"label": "Amethyst",
"path": "./themes/amethyst-color-theme.json",
"uiTheme": "vs-dark"
}
]
},
"scripts": {
"clean": "git clean -df",
"package": "vsce package --yarn",
"package-pre": "yarn run patch-pre && yarn run package --pre-release",
"patch-pre": "node ./scripts/applyPreReleasePatch.js",
"prep-release": "node ./scripts/prep-release.js",
"pretty": "prettier --config .prettierrc --loglevel warn --write .",
"pub": "vsce publish --yarn",
"pub-pre": "vsce publish --yarn --pre-release",
"vscode:prepublish": "yarn run clean"
},
"devDependencies": {
"@vscode/vsce": "3.1.1",
"prettier": "3.3.3"
}
}