-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.8 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "traditional-japanese-vscode-theme",
"displayName": "Traditional Japanese Theme",
"description": "A beautiful dark VS Code theme pack inspired by traditional Japanese palettes and aesthetics.",
"version": "1.3.3",
"publisher": "AdriaForcada",
"author": {
"name": "Adrià Forcada",
"url": "https://adriaforcada.com"
},
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#B8352D",
"theme": "dark"
},
"homepage": "https://github.com/aforcada/traditional-japanese-vscode-theme#readme",
"repository": {
"type": "git",
"url": "https://github.com/aforcada/traditional-japanese-vscode-theme"
},
"bugs": {
"url": "https://github.com/aforcada/traditional-japanese-vscode-theme/issues"
},
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"japan",
"japanese",
"traditional",
"wabi-sabi",
"sakura",
"momiji",
"fuji",
"shrine",
"matcha"
],
"contributes": {
"themes": [
{
"label": "Traditional Japanese Fuji",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-fuji.json"
},
{
"label": "Traditional Japanese Sakura",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-sakura.json"
},
{
"label": "Traditional Japanese Matcha",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-matcha.json"
},
{
"label": "Traditional Japanese Momiji",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-momiji.json"
},
{
"label": "Traditional Japanese Shrine",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-shrine.json"
},
{
"label": "Traditional Japanese Wabi-Sabi",
"uiTheme": "vs-dark",
"path": "./themes/traditional-japanese-wabi-sabi.json"
}
],
"configurationDefaults": {
"editor.bracketPairColorization.enabled": false
}
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vscode/vsce": "^3.6.2",
"husky": "^9.1.7",
"semantic-release": "^25.0.0",
"semantic-release-vsce": "^6.0.12"
},
"scripts": {
"prepare": "husky install",
"commitlint:edit": "pnpm exec commitlint --edit",
"commitlint:last": "pnpm exec commitlint --last",
"release:dry": "semantic-release --dry-run",
"semantic-release": "semantic-release"
}
}