-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.24 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.24 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
{
"name": "sofidev",
"displayName": "SofiDev",
"description": "My SofiDev Theme",
"version": "6.1.9",
"main": "./extension.js",
"engines": {
"vscode": "^1.79.0"
},
"activationEvents": [
"onCommand:sofidev.setTheme.SofiDev",
"onCommand:sofidev.setTheme.SofiAgust",
"onCommand:sofidev.setTheme.SofiOceanic",
"onCommand:sofidev.setTheme.SofiAura"
],
"author": {
"name": "Sofia Osorio (SofiDev)",
"email": "contact@sofidev.top",
"url": "https://itssofi.dev/"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#1b1f23",
"theme": "dark"
},
"repository": {
"url": "https://github.com/SofiDevO/sofidev-theme",
"type": "git"
},
"categories": [
"Themes"
],
"keywords": [
"SofiDev",
"Dark theme",
"coder",
"purple",
"dark purple",
"ubuntu",
"Night"
],
"contributes": {
"themes": [
{
"label": "SofiDev",
"uiTheme": "vs-dark",
"path": "./themes/SofiDev.json"
},
{
"label": "SofiAgust",
"uiTheme": "vs-dark",
"path": "./themes/SofiAgust.json"
},
{
"label": "SofiOceanic",
"uiTheme": "vs-dark",
"path": "./themes/SofiOceanic.json"
},
{
"label": "SofiCatppuccin",
"uiTheme": "vs-dark",
"path": "./themes/SofiCatppuccin.json"
},
{
"label": "SofiAura",
"uiTheme": "vs-dark",
"path": "./themes/SofiAura.json"
}
],
"commands": [
{
"command": "sofidev.setTheme.SofiDev",
"title": "SofiDev: Set SofiDev Theme",
"category": "Themes"
},
{
"command": "sofidev.setTheme.SofiAura",
"title": "SofiDev: Set SofiAura Theme",
"category": "Themes"
},
{
"command": "sofidev.setTheme.SofiAgust",
"title": "SofiDev: Set SofiAgust Theme",
"category": "Themes"
},
{
"command": "sofidev.setTheme.SofiOceanic",
"title": "SofiDev: Set SofiOceanic Theme",
"category": "Themes"
},
{
"command": "sofidev.setTheme.SofiCatppuccin",
"title": "SofiDev: Set SofiCatppuccin Theme",
"category": "Themes"
}
]
},
"publisher": "SofiDev"
}