-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.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
{
"publisher": "lewxdev",
"name": "vscode-glyph",
"version": "0.2.0",
"displayName": "%displayName%",
"description": "%description%",
"icon": "static/icon.png",
"repository": "github:lewxdev/vscode-glyph",
"license": "MIT",
"engines": {
"vscode": "^1.87.0"
},
"galleryBanner": {
"color": "#62646a",
"theme": "dark"
},
"sponsor": {
"url": "https://github.com/sponsors/lewxdev"
},
"categories": [
"Themes"
],
"extensionKind": [
"ui"
],
"keywords": [
"customization",
"icon-theme",
"icons",
"minimal",
"theme"
],
"main": "src/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"iconThemes": [
{
"id": "glyph.legacy",
"label": "%iconThemeLabelLegacy%",
"path": "theme/legacy-icon-theme.json"
},
{
"id": "glyph.minimal",
"label": "%iconThemeLabelMinimal%",
"path": "theme/minimal-icon-theme.json"
}
]
},
"scripts": {
"build": "bun run clean && bun run scripts/build.ts",
"clean": "git clean -xdf dist",
"generate": "fantasticon",
"prepare": "husky"
},
"dependencies": {
"brace-expansion": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@tsconfig/bun": "^1.0.7",
"@tsconfig/strictest": "^2.0.5",
"@types/brace-expansion": "^1.1.2",
"@types/bun": "^1.1.6",
"@types/vscode": "^1.87",
"@vscode/vsce": "^2.25.0",
"esbuild": "^0.23.0",
"fantasticon": "^3.0.0",
"husky": "^9"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}