Update package.json

This commit is contained in:
ErikrafT 2025-05-03 19:42:16 -03:00 committed by GitHub
parent 6d6a3f77ff
commit 52694c2810
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 9 deletions

View File

@ -8,27 +8,25 @@
}, },
"icon": "images/icon.png", "icon": "images/icon.png",
"activationEvents": [ "activationEvents": [
"onView:erikraftDropView" "onView:erikraftDrop"
], ],
"main": "./src/extension.js", "main": "./src/extension.js",
"contributes": { "contributes": {
"viewsContainers": { "viewsContainers": {
"activitybar": [ "activitybar": [
{ {
"id": "erikraftDropViewContainer", "id": "erikraftDrop",
"title": "ErikrafT Drop", "title": "ErikrafT Drop",
"icon": { "icon": "images/icon.png"
"light": "images/ui-icon-light.svg",
"dark": "images/ui-icon-dark.svg"
}
} }
] ]
}, },
"views": { "views": {
"erikraftDropViewContainer": [ "erikraftDrop": [
{ {
"id": "erikraftDropView", "id": "erikraftDrop.view",
"name": "ErikrafT Drop" "name": "ErikrafT Drop",
"type": "webview"
} }
] ]
} }