-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 855 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 855 Bytes
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
{
"name": "the-botas-icon-theme",
"displayName": "the botas icon theme",
"description": "Hellooo",
"publisher": "arerorero",
"version": "0.2.4",
"icon": "icon.png",
"scripts": {
"build": "node config.js && npm run format",
"publish": "node config.js && npm run format && node delete.js && vsce package && vsce publish",
"format": "prettier --loglevel warn --write \"**/*.{jsx,js,json}\""
},
"repository": {
"type": "git",
"url": "https://github.com/arerorero/the-botas-icon-theme"
},
"engines": {
"vscode": "^1.90.0"
},
"type": "module",
"categories": [
"Themes"
],
"contributes": {
"iconThemes": [
{
"id": "the-botas-icon-theme",
"label": "The Botas - icon theme",
"path": "./icons.json"
}
]
},
"devDependencies": {
"prettier": "2.8.8"
}
}