-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.87 KB
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
{
"name": "intellij-ish-darcula-theme",
"displayName": "IntelliJ-ish Darcula Theme",
"description": "A theme extension for Visual Studio Code based on Darcula theme from Jetbrains IDE's.",
"version": "1.0.0",
"publisher": "csantiago132",
"author": {
"name": "Carlos Santiago"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/csantiago132/intellij-ish-darcula-theme.git"
},
"bugs": {
"url": "https://github.com/csantiago132/intellij-ish-darcula-theme/issues"
},
"engines": {
"vscode": "^1.30.0"
},
"icon": "theme-icon.png",
"categories": ["Themes"],
"contributes": {
"themes": [
{
"label": "IntelliJ-ish Darcula",
"uiTheme": "vs-dark",
"path": "./themes/IntelliJ-ish Darcula-color-theme.json"
}
]
},
"keywords": ["intellij-theme", "darcula", "jetbrains ide", "android studio"],
"galleryBanner": {
"color": "#292B2E",
"theme": "dark"
},
"scripts": {
"publish": "vsce package && vsce publish",
"prettier:js": "./node_modules/.bin/prettier --config .prettierrc --write *.{js, jsx}",
"prettier:tsx": "./node_modules/.bin/prettier --config .prettierrc --write *.{tsx, ts}",
"prettier:json": "./node_modules/.bin/prettier --config .prettierrc --write *.json",
"prettier:md": "./node_modules/.bin/prettier --config .prettierrc --print-width 80 --write *.md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx, ts}": [
"yarn run prettier:tsx",
"yarn run tslint",
"yarn run stylelint:css",
"git add"
],
"*.json": ["yarn run prettier:json", "git add"],
"*.md": ["yarn run prettier:md", "git add"],
"*.{jsx, js}": ["yarn run prettier:js", "git add"]
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.16.1"
}
}