-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.87 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
{
"name": "vscode-theme-base-minor",
"version": "1.1.2",
"displayName": "Base Minor",
"homepage": "https://github.com/adamsome/vscode-theme-base-minor",
"description": "Base Minor",
"publisher": "adamsome",
"author": "adamsome (https://github.com/adamsome)",
"license": "MIT",
"scripts": {
"build": "npm run build:compile && npm run build:themes",
"build:compile": "tsc -p .",
"build:themes": "mkdir -p ./themes && node build/build.js",
"start": "npm run build",
"lint": "tsc --noEmit && eslint './src/**/*.{js,ts,tsx}' --quiet --fix",
"vscode:prepublish": "npm run build"
},
"maintainers": [
"adamsome (https://github.com/adamsome)"
],
"repository": {
"type": "git",
"url": "https://github.com/adamsome/vscode-theme-base-minor.git"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Themes"
],
"keywords": [
"base-minor",
"theme",
"color-theme"
],
"icon": "logo.png",
"galleryBanner": {
"color": "#053fc5",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Base Minor Dark Hard",
"uiTheme": "vs-dark",
"path": "./themes/base-minor-dark-hard.json",
"subtype": "hard"
},
{
"label": "Base Minor Dark Soft",
"uiTheme": "vs-dark",
"path": "./themes/base-minor-dark-soft.json",
"subtype": "soft"
}
]
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}