-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.23 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
{
"name": "gatito-theme",
"version": "0.2.3",
"publisher": "pawelgrzybek",
"homepage": "https://pawelgrzybek.com/",
"engines": {
"vscode": "^1.14.0"
},
"license": "MIT",
"displayName": "Gatito Theme",
"description": "Minimalistic and modern looking fork of fantastic Oceanic theme.",
"categories": [
"Themes"
],
"keywords": [
"gatito",
"dark",
"theme",
"color-theme",
"oceanic"
],
"galleryBanner": {
"color": "#252B2E",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Gatito Theme",
"uiTheme": "vs-dark",
"path": "./dist/gatito-theme.json"
}
]
},
"maintainers": [
"Pawel Grzybek <[email protected]> (https://pawelgrzybek.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/pawelgrzybek/gatito-theme.git"
},
"bugs": {
"url": "https://github.com/pawelgrzybek/gatito-theme/issues"
},
"icon": "images/icon.png",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"watch": "^1.0.2"
},
"scripts": {
"dev": "watch 'npm run build' ./src",
"build": "node src/index.js"
}
}