-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
191 lines (191 loc) · 5.87 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
{
"name": "hypernym-icons",
"version": "2.0.0",
"author": "Hypernym Studio",
"description": "An ultra-minimalistic VSCode icon set for modern devs.",
"license": "Apache-2.0",
"publisher": "hypernym-studio",
"displayName": "Hypernym Icons",
"icon": "dist/icon.png",
"type": "module",
"private": true,
"homepage": "https://github.com/hypernym-studio/vscode-icons",
"funding": "https://github.com/sponsors/ivodolenc",
"sponsor": {
"url": "https://github.com/sponsors/ivodolenc"
},
"repository": {
"type": "git",
"url": "https://github.com/hypernym-studio/vscode-icons"
},
"bugs": {
"url": "https://github.com/hypernym-studio/vscode-icons/issues"
},
"keywords": [
"vscode",
"theme",
"icons",
"extension",
"vscode-icons",
"vscode-extension",
"vscode-icon-theme",
"vscode-icon-extension",
"hypernym-studio",
"hypernym-icons",
"hypernym"
],
"categories": [
"Other",
"Themes"
],
"extensionKind": [
"ui",
"workspace"
],
"galleryBanner": {
"color": "#0d0d0d",
"theme": "dark"
},
"main": "./dist/extension/index.cjs",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"iconThemes": [
{
"id": "hypernym-icons",
"label": "Hypernym Icons",
"path": "./dist/hypernym-icons.json"
}
],
"configuration": {
"title": "Hypernym Icons",
"properties": {
"hypernym-icons.hidesExplorerArrows": {
"order": 1,
"type": "boolean",
"default": true,
"markdownDescription": "Specifies the visibility of the explorer arrows. \n\n Default: `true`"
},
"hypernym-icons.folders.color": {
"order": 2,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom color for folder icons. Accepts valid HEX color format. \n\n Default: `undefined` \n\n Example: `#fff`, `#ffffff`, `#ffffff33`"
},
"hypernym-icons.folders.opacity": {
"order": 3,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom opacity for folder icons. Accepts a percentage size format. \n\n Default: `undefined` \n\n Example: `60%`"
},
"hypernym-icons.folders.size": {
"order": 4,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom size for folder icons. Accepts a percentage size format. \n\n Default: `undefined` \n\n Example: `130%`"
},
"hypernym-icons.icons.color": {
"order": 5,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom color for all icons. Accepts valid HEX color format. \n\n Default: `undefined` \n\n Example: `#fff`, `#ffffff`, `#ffffff33`"
},
"hypernym-icons.icons.opacity": {
"order": 6,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom opacity for all icons. Accepts a percentage size format. \n\n Default: `undefined` \n\n Example: `60%`"
},
"hypernym-icons.icons.size": {
"order": 7,
"type": "string",
"default": "",
"markdownDescription": "Specifies a custom size for all icons. Accepts a percentage size format. \n\n Default: `undefined` \n\n Example: `130%`"
}
}
},
"commands": [
{
"category": "Hypernym Icons",
"command": "hypernym-icons.toggleExplorerArrows",
"title": "Toggle Explorer Arrows"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setFolderColor",
"title": "Set Folder Color"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setFolderOpacity",
"title": "Set Folder Opacity"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setFolderSize",
"title": "Set Folder Size"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setIconColor",
"title": "Set Icon Color"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setIconOpacity",
"title": "Set Icon Opacity"
},
{
"category": "Hypernym Icons",
"command": "hypernym-icons.setIconSize",
"title": "Set Icon Size"
}
]
},
"scripts": {
"build:static": "bun run ./scripts/build-static.ts",
"build:theme": "bun run ./scripts/build-theme.ts",
"build:bundle": "bun run ./scripts/build-bundle.ts",
"build:all": "pnpm build:static && pnpm build:theme && pnpm build:bundle",
"export:list": "vsce ls --tree --no-dependencies",
"export:extension": "pnpm build:static && pnpm build:theme && pnpm build:bundle --production && vsce package --no-dependencies",
"publish:extension": "pnpm build:static && pnpm build:theme && pnpm build:bundle --production && vsce publish --no-dependencies",
"dev": "pnpm build:static && pnpm build:theme && bun run ./scripts/build-watch.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write ."
},
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"vscode": "^1.95.0",
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"peerDependencies": {
"@types/node": ">=20.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@hypernym/eslint-config": "^3.5.3",
"@hypernym/prettier-config": "^3.2.1",
"@hypernym/tsconfig": "^2.4.0",
"@hypernym/utils": "^3.4.1",
"@types/node": "^22.10.1",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2"
}
}