mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 17:47:22 +00:00
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.2.6 to 6.3.1. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/create-vite@6.3.1/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 6.3.1 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "kube-context",
|
|
"displayName": "Kube Context",
|
|
"description": "Easily switch between Kubernetes contexts",
|
|
"version": "1.19.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.1",
|
|
"vitest": "^3.1.1"
|
|
}
|
|
}
|