-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.19 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
{
"name": "@melyon/root",
"displayName": "Melyon Theme",
"description": "a dark theme for vscode",
"version": "0.1.4",
"publisher": "cair71",
"icon": "web/src/assets/melyon-logo-v2.png",
"repository": "https://github.com/CA1R7/melyon.git",
"workspaces": [
"api",
"web"
],
"scripts": {
"dev": "concurrently \"yarn run web\" \"yarn run api\"",
"web": "cd ./web && yarn start",
"api": "cd ./api && yarn dev"
},
"author": {
"name": "cair71",
"email": "cairzz222@gmail.com"
},
"galleryBanner": {
"color": "#171c28",
"theme": "dark"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Themes"
],
"keywords": [
"Themes",
"Dark Theme",
"color-theme"
],
"contributes": {
"themes": [
{
"label": "Melyon",
"uiTheme": "vs-dark",
"path": "./themes/melyon-dark-theme-green.json",
"version": "0.1.3"
},
{
"label": "Melyon blue",
"uiTheme": "vs-dark",
"path": "./themes/melyon-dark-theme-blue.json",
"version": "0.2.1"
}
]
},
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"concurrently": "^6.0.2"
}
}