podman-desktop/extensions/kube-context/package.json
Florent Benoit 4eaed9e0b7 chore: upgrade to vite v4 and rollup v3
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>
2022-12-22 12:07:36 +01:00

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"
}
}