-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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": "silv4b-dark-theme",
"displayName": "Silv4b Dark Theme 🌑",
"description": "A dark blue tone theme, different from the standard black/gray tones we're used to.",
"version": "1.0.2",
"publisher": "Silv4b",
"icon": "profile-photo.jpg",
"repository": {
"type": "git",
"url": "https://github.com/silv4b/silv4b-dark-theme"
},
"keywords": [
"theme",
"dark theme",
"silv4b",
"silv4b dark"
],
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Silv4b Dark Theme 🌑",
"uiTheme": "vs-dark",
"path": "./themes/Silv4b Dark Theme-color-theme.json"
}
]
},
"scripts": {
"add": "git add .",
"commit": "git-cz",
"add-commit": "npm run add && git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "^6.3.0",
"husky": "^7.0.2"
}
}