-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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": "moonbloom-theme",
"displayName": "Moonbloom Official Theme",
"description": "Gentle on the eyes, evoking the cozy tranquility of a serene night.",
"publisher": "Moonbloom",
"version": "1.1.2",
"scripts": {
"convert-colors": "node ./scripts/convert-color-hex-to-uppercase.cjs ./color-schema.js && node ./scripts/convert-color-hex-to-uppercase.cjs ./themes/moonbloom-color-theme.json",
"vsce-publish": "vsce publish",
"ovsx-publish": "ovsx publish",
"prepublish-theme": "npm run convert-colors",
"publish-theme": "npm run prepublish-theme && npm run vsce-publish && npm run ovsx-publish"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Moonbloom Official Theme",
"uiTheme": "vs-dark",
"path": "./themes/moonbloom-color-theme.json"
}
]
},
"license": "MIT",
"maintainers": [
"Igor Teplostanski"
],
"repository": {
"type": "git",
"url": "https://github.com/moonbloom-theme/visual-studio-code.git"
},
"bugs": {
"url": "https://github.com/moonbloom-theme/visual-studio-code/issues"
},
"keywords": [
"moonbloom",
"dark",
"theme",
"color-theme"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1D1E27",
"theme": "dark"
},
"__metadata": {
"size": 92613
},
"devDependencies": {
"ovsx": "^0.10.1",
"vsce": "^2.15.0"
}
}