mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
https://vitejs.dev/blog/announcing-vite4.html also update vite svelte plug-in to a v4 vite compliant version Change-Id: Ib83831ccff175b757c997a1321a2b60eb09b83e5 Signed-off-by: Florent Benoit <fbenoit@redhat.com>
35 lines
926 B
JSON
35 lines
926 B
JSON
{
|
|
"name": "kube-context",
|
|
"displayName": "Kube Context",
|
|
"description": "Allows the ability to switch between Kubernetes contexts",
|
|
"version": "0.0.1",
|
|
"icon": "icon.png",
|
|
"publisher": "benoitf",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"podman-desktop": "^0.0.1"
|
|
},
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "kubecontext.switch",
|
|
"title": "Kube Context: switch context"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "rollup --bundleConfigAsCjs --config rollup.config.js --compact --environment BUILD:production && node ./scripts/build.js",
|
|
"watch": "rollup --bundleConfigAsCjs --config rollup.config.js -w"
|
|
},
|
|
"dependencies": {
|
|
"@tmpwip/extension-api": "^0.0.1",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"7zip-min": "^1.4.3",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"mkdirp": "^1.0.4",
|
|
"zip-local": "^0.3.5"
|
|
}
|
|
}
|