-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 2.78 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
{
"name": "unko-vscode-theme",
"displayName": "Unko Theme",
"description": "Dark theme with Monokai token colors for Visual Studio Code",
"version": "0.0.1",
"author": {
"name": "kylsgl",
"email": "[email protected]",
"url": "https://kylsgl.com/"
},
"publisher": "kylsgl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kylsgl/unko-vscode-theme"
},
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=9",
"vscode": "^1.5.0"
},
"icon": "./resources/icon-512x512.png",
"galleryBanner": {
"color": "#161616",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"color-theme",
"dark theme",
"monokai",
"theme"
],
"contributes": {
"themes": [
{
"label": "Unko",
"path": "./themes/unko.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Orange)",
"path": "./themes/unko-orange.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Bronze)",
"path": "./themes/unko-bronze.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Green)",
"path": "./themes/unko-green.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Blue)",
"path": "./themes/unko-blue.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Red)",
"path": "./themes/unko-red.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Purple)",
"path": "./themes/unko-purple.json",
"uiTheme": "vs-dark"
},
{
"label": "Unko (Gray)",
"path": "./themes/unko-gray.json",
"uiTheme": "vs-dark"
}
]
},
"scripts": {
"build": "tsx ./scripts/build/build.ts",
"format": "prettier --write .",
"lint": "eslint src --ext ts --report-unused-disable-directives --max-warnings 0",
"lint:fix": "pnpm lint --fix",
"precommit": "pnpm lint:fix && pnpm format && pnpm test && pnpm build",
"test": "tsc --noEmit",
"vs:package": "pnpm vsce package --no-dependencies",
"vs:publish": "pnpm vsce publish --no-dependencies"
},
"devDependencies": {
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vscode/vsce": "^3.2.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-total-functions": "^7.1.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}