-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.46 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "universe",
"displayName": "Universe",
"description": "A dark theme designed with consistent syntax highlighting, accessible text contrast and distract-free user interface that let you focus on the code. Supports for CSS, Elixir, GraphQL, HTML (Pug), Javascript (Angular, React, Vue.js), JSON, Markdown, Typescript and YAML",
"version": "1.9.0",
"icon": "static/icon.png",
"galleryBanner": {
"color": "#0E1729",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"vs code",
"theme",
"color theme",
"dark",
"universe",
"blue",
"purple",
"accessible",
"tema",
"oscuro",
"universo"
],
"publisher": "MatiasOlivera",
"author": {
"name": "Matías Olivera",
"email": "[email protected]",
"url": "https://github.com/MatiasOlivera"
},
"contributes": {
"themes": [
{
"label": "Universe",
"uiTheme": "vs-dark",
"path": "./theme/universe.json"
},
{
"label": "Universe Italic",
"uiTheme": "vs-dark",
"path": "./theme/universe.italic.json"
},
{
"label": "Universe Purple",
"uiTheme": "vs-dark",
"path": "./theme/universe.purple.json"
},
{
"label": "Universe Purple Italic",
"uiTheme": "vs-dark",
"path": "./theme/universe.purple.italic.json"
},
{
"label": "Universe Gray",
"uiTheme": "vs-dark",
"path": "./theme/universe.gray.json"
},
{
"label": "Universe Gray Italic",
"uiTheme": "vs-dark",
"path": "./theme/universe.gray.italic.json"
}
]
},
"engines": {
"vscode": "^1.31.0"
},
"homepage": "https://github.com/MatiasOlivera/universe-theme",
"repository": {
"type": "git",
"url": "https://github.com/MatiasOlivera/universe-theme"
},
"bugs": {
"url": "https://github.com/MatiasOlivera/universe-theme/issues"
},
"scripts": {
"build": "npm run ts:build && npm run node:build",
"node:build": "node dist/index.js",
"node:watch": "nodemon dist/index.js",
"ts:build": "tsc",
"ts:watch": "tsc --watch",
"publish": "vsce publish minor"
},
"devDependencies": {
"@types/flat": "^5.0.2",
"@types/node": "^14.17.27",
"@types/prettier": "^2.4.1",
"deepmerge": "^4.2.2",
"flat": "^5.0.2",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"license": "SEE LICENCE IN LICENSE.md"
}