Update package.json
This commit is contained in:
parent
3ac5598d85
commit
9286f21223
|
|
@ -2,21 +2,56 @@
|
||||||
"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": "2.0.0",
|
"version": "3.0.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.70.0"
|
"vscode": "^1.70.0"
|
||||||
},
|
},
|
||||||
|
"icon": "images/icon.png",
|
||||||
"activationEvents": [
|
"activationEvents": [
|
||||||
"onCommand:erikraftDrop.open"
|
"onCommand:erikraftDrop.open",
|
||||||
|
"onView:erikraftDrop.view"
|
||||||
],
|
],
|
||||||
"main": "./src/extension.js",
|
"main": "./src/extension.js",
|
||||||
"contributes": {
|
"contributes": {
|
||||||
|
"viewsContainers": {
|
||||||
|
"activitybar": [
|
||||||
|
{
|
||||||
|
"id": "erikraftDrop",
|
||||||
|
"title": "ErikrafT Drop",
|
||||||
|
"icon": {
|
||||||
|
"light": "images/ui-icon-light.svg",
|
||||||
|
"dark": "images/ui-icon-dark.svg"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"views": {
|
||||||
|
"erikraftDrop": [
|
||||||
|
{
|
||||||
|
"type": "webview",
|
||||||
|
"id": "erikraftDrop.view",
|
||||||
|
"name": "ErikrafT Drop"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"commands": [
|
"commands": [
|
||||||
{
|
{
|
||||||
"command": "erikraftDrop.open",
|
"command": "erikraftDrop.open",
|
||||||
"title": "Abrir ErikrafT Drop"
|
"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"],
|
||||||
"publisher": "ErikrafT",
|
"publisher": "ErikrafT",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue