-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "dark-party",
"displayName": "Dark Party",
"description": "✨ VSCode dark theme based on Dracula theme and One Dark Pro color token. For personal use, feel free to download if you want to use it too.",
"version": "3.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/latipun7/dark-party"
},
"bugs": {
"url": "https://github.com/latipun7/dark-party/issues"
},
"engines": {
"vscode": ">=1.62.0",
"node": ">=14.17.0"
},
"publisher": "ryuukibeat",
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#d55fde",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Dark Party",
"uiTheme": "vs-dark",
"path": "./themes/dark-party-color-theme.json"
}
]
},
"extensionKind": [
"ui",
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"scripts": {
"cm": "cz",
"check": "ts-node ./scripts/check-available-theme-colors.ts",
"build": "ts-node ./scripts/generate-themes.ts && prettier --write --ignore-unknown themes/*",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --check .",
"semantic-release": "semantic-release",
"postinstall": "husky install"
},
"icon": "icon.png",
"keywords": [
"dark party",
"dracula",
"custom theme",
"one dark pro",
"dark",
"one dark",
"onedark",
"atom",
"color theme",
"color-theme",
"color",
"theme",
"vscode"
],
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/cz-commitlint": "^15.0.0",
"@latipun7/commitlintrc": "^1.1.3",
"@latipun7/eslint-config": "^1.0.4",
"@latipun7/releaserc": "^2.2.0",
"@latipun7/tsconfig": "^1.2.1",
"@types/chroma-js": "^2.1.3",
"@types/node": "^16.11.27",
"chroma-js": "^2.1.2",
"commitizen": "^4.2.4",
"eslint": "^8.5.0",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"eslintConfig": {
"extends": "@latipun7",
"rules": {
"import/no-extraneous-dependencies": "off"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"commitlint": {
"extends": [
"@latipun7/commitlintrc"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"extends": [
"@latipun7/releaserc/vsce"
]
}
}