-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.75 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.75 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
99
100
101
102
103
104
105
106
107
108
{
"name": "pinkpixel-vscode-candy-themes",
"displayName": "Pink Pixel Candy Themes",
"description": "Neon candy dark themes and contrast-heavy editor looks for Visual Studio Code by Pink Pixel.",
"version": "1.1.3",
"publisher": "pinkpixel",
"license": "Apache-2.0",
"author": {
"name": "Pink Pixel",
"email": "admin@pinkpixel.dev",
"url": "https://pinkpixel.dev"
},
"homepage": "https://github.com/pinkpixel-dev/vscode-candy-themes",
"repository": {
"type": "git",
"url": "https://github.com/pinkpixel-dev/vscode-candy-themes.git"
},
"bugs": {
"url": "https://github.com/pinkpixel-dev/vscode-candy-themes/issues",
"email": "admin@pinkpixel.dev"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"themes",
"color theme",
"vscode theme",
"pink pixel",
"dark theme",
"neon",
"candy",
"cyberpunk",
"colorful",
"pink",
"purple",
"cyan",
"high contrast",
"accessibility"
],
"galleryBanner": {
"color": "#1a1020",
"theme": "dark"
},
"icon": "icon.png",
"scripts": {
"validate": "node ./scripts/check-themes.mjs",
"package": "npm run validate && npx @vscode/vsce package"
},
"contributes": {
"themes": [
{
"label": "Pink Pixel Aurora Burst",
"uiTheme": "vs-dark",
"path": "./themes/aurora-burst-color-theme.json"
},
{
"label": "Pink Pixel Candy Nebula",
"uiTheme": "vs-dark",
"path": "./themes/candy-nebula-color-theme.json"
},
{
"label": "Pink Pixel Cloudwerx Lab",
"uiTheme": "vs-dark",
"path": "./themes/cloudwerx-lab-color-theme.json"
},
{
"label": "Pink Pixel Electric Sugarstorm",
"uiTheme": "vs-dark",
"path": "./themes/electric-sugarstorm-color-theme.json"
},
{
"label": "Pink Pixel Hyper Noir",
"uiTheme": "vs-dark",
"path": "./themes/hyper-noir-color-theme.json"
},
{
"label": "Pink Pixel Neon Lagoon",
"uiTheme": "vs-dark",
"path": "./themes/neon-lagoon-color-theme.json"
},
{
"label": "Pink Pixel Photon Storm",
"uiTheme": "vs-dark",
"path": "./themes/photon-storm-color-theme.json"
},
{
"label": "Pink Pixel Stardust Rush",
"uiTheme": "vs-dark",
"path": "./themes/stardust-rush-color-theme.json"
},
{
"label": "Pink Pixel Unicorn Sparkle",
"uiTheme": "vs-dark",
"path": "./themes/unicorn-sparkle-color-theme.json"
},
{
"label": "Pink Pixel Voltage Velvet",
"uiTheme": "vs-dark",
"path": "./themes/voltage-velvet-color-theme.json"
}
]
}
}