-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
89 lines (89 loc) · 1.85 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
{
"name": "syntax-highlight",
"version": "0.0.15",
"displayName": "%displayName%",
"description": "%description%",
"publisher": "peaceshi",
"license": "MIT",
"icon": "icon.png",
"qna": "marketplace",
"author": {
"name": "peaceshi"
},
"type": "module",
"categories": [
"Programming Languages",
"Themes"
],
"engines": {
"vscode": "^1.43.1"
},
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/peaceshi/Syntax-Highlight-Theme/issues",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/peaceshi/Syntax-Highlight-Theme.git",
"type": "git"
},
"keywords": [
"c++",
"cpp",
"color",
"colour",
"coloring",
"dark",
"highlight",
"highlighting",
"material",
"peaceshi",
"react",
"syntax",
"textmate",
"theme",
"themes"
],
"contributes": {
"themes": [
{
"id": "Syntax Material Dark Level 1 (beta)",
"label": "Syntax Material Dark Level 1 (beta)",
"uiTheme": "vs-dark",
"path": "./themes/semanticHighlighting.json"
},
{
"id": "Syntax Material Dark",
"label": "Syntax Material Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark_material.json"
}
]
},
"iconThemes": [
{
"id": "",
"label": "",
"path": ""
}
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"scripts": {
"prepare": "husky",
"lint-staged": "pnpm exec biome lint && pnpm exec prettier . --check",
"package": "pnpx @vscode/vsce package"
}
}