Update package.json

This commit is contained in:
ErikrafT 2025-05-03 19:35:27 -03:00 committed by GitHub
parent f50a9e3090
commit e5d4a54043
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 25 deletions

View File

@ -2,21 +2,20 @@
"name": "erikraft-drop", "name": "erikraft-drop",
"displayName": "ErikrafT Drop", "displayName": "ErikrafT Drop",
"description": "A maneira mais fácil de transferir arquivos entre dispositivos.", "description": "A maneira mais fácil de transferir arquivos entre dispositivos.",
"version": "3.0.0", "version": "4.0.0",
"engines": { "engines": {
"vscode": "^1.70.0" "vscode": "^1.70.0"
}, },
"icon": "images/icon.png", "icon": "images/icon.png",
"activationEvents": [ "activationEvents": [
"onCommand:erikraftDrop.open", "onView:erikraftDropView"
"onView:erikraftDrop.view"
], ],
"main": "./src/extension.js", "main": "./src/extension.js",
"contributes": { "contributes": {
"viewsContainers": { "viewsContainers": {
"activitybar": [ "activitybar": [
{ {
"id": "erikraftDrop", "id": "erikraftDropViewContainer",
"title": "ErikrafT Drop", "title": "ErikrafT Drop",
"icon": { "icon": {
"light": "images/ui-icon-light.svg", "light": "images/ui-icon-light.svg",
@ -26,31 +25,12 @@
] ]
}, },
"views": { "views": {
"erikraftDrop": [ "erikraftDropViewContainer": [
{ {
"type": "webview", "id": "erikraftDropView",
"id": "erikraftDrop.view",
"name": "ErikrafT Drop" "name": "ErikrafT Drop"
} }
] ]
},
"commands": [
{
"command": "erikraftDrop.open",
"title": "Abrir ErikrafT Drop",
"icon": {
"light": "images/ui-icon-light.svg",
"dark": "images/ui-icon-dark.svg"
}
}
],
"menus": {
"commandPalette": [
{
"command": "erikraftDrop.open",
"when": "true"
}
]
} }
}, },
"categories": ["Other"], "categories": ["Other"],