-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "monkey-island-theme",
"displayName": "Monkey Island Theme",
"description": "An editor color theme based on Monkey Island",
"version": "0.3.0",
"publisher": "VictorChirino",
"repository": {
"type": "git",
"url": "https://github.com/vicchirino/monkey-island-theme"
},
"bugs": {
"url": "https://github.com/vicchirino/monkey-island-theme/issues",
"email": "[email protected]"
},
"homepage": "https://monkey-island-extension-site.vercel.app",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.69.0"
},
"galleryBanner": {
"color": "#FDFDFE",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"Monkey Island",
"Monkey-Island",
"Theme",
"Color Theme",
"Dark Theme",
"Guybrush Threepwood",
"Melee Island",
"Monkey"
],
"scripts": {
"prettier": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,css,scss,html}'",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,md,css,scss,html}": [
"prettier --write"
]
},
"contributes": {
"themes": [
{
"label": "Melee Island Theme",
"uiTheme": "vs-dark",
"path": "./themes/melee-island-theme.json"
}
]
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "2.7.1",
"husky": "^8.0.0"
}
}