podman-desktop/extensions/kube-context/package.json
axel7083 b7a7a4c9f0 chore: bump version to 1.20.0
Signed-off-by: axel7083 <fbenoit@redhat.com>
2025-05-21 17:43:22 +02:00

51 lines
1.2 KiB
JSON

{
"name": "kube-context",
"displayName": "Kube Context",
"description": "Easily switch between Kubernetes contexts",
"version": "1.20.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.0.1"
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "kubecontext.switch",
"title": "Kube Context: Switch context"
},
{
"command": "kubecontext.quickpick",
"title": "Kube Context: Select a context"
}
],
"icons": {
"kube-icon": {
"description": "Kubernetes icon",
"default": {
"fontPath": "kube.woff2",
"fontCharacter": "\\0041"
}
}
}
},
"scripts": {
"build": "vite build && node ./scripts/build.js",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"watch": "vite build -w"
},
"dependencies": {
"@podman-desktop/api": "workspace:*",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"adm-zip": "^0.5.16",
"@types/js-yaml": "^4.0.9",
"mkdirp": "^3.0.1",
"vite": "^6.3.5",
"vitest": "^3.1.4"
}
}