podman-desktop/extensions/lima/package.json
dependabot[bot] f66a609dd3 chore(deps-dev): bump vite from 5.2.9 to 5.2.10
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.9 to 5.2.10.
- [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/v5.2.10/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-22 12:04:03 +02:00

76 lines
1.9 KiB
JSON

{
"name": "lima",
"displayName": "Lima",
"description": "Integration for Lima: Linux Machines (typically macOS)",
"version": "0.0.1",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.0.1"
},
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Lima",
"properties": {
"lima.binary.path": {
"type": "string",
"format": "file",
"default": "",
"description": "Custom path to limactl binary (Default is blank)"
},
"lima.type": {
"type": "string",
"default": "podman",
"enum": [
"podman",
"docker",
"kubernetes"
],
"description": "Engine type (requires restart of extension)"
},
"lima.name": {
"type": "string",
"default": "",
"description": "Instance name (default is same name as type)"
},
"lima.socket": {
"type": "string",
"default": "",
"description": "Socket name (default is equal to type.sock)"
}
}
},
"menus": {
"dashboard/image": [
{
"command": "lima.image.move",
"title": "Push image to Lima cluster"
}
]
},
"commands": [
{
"command": "lima.image.move",
"title": "Lima: Move image to cluster..."
}
]
},
"scripts": {
"build": "vite build && node ./scripts/build.js",
"test": "vitest run --coverage --passWithNoTests",
"test:watch": "vitest watch --coverage --passWithNoTests",
"watch": "vite build --watch"
},
"dependencies": {
"@podman-desktop/api": "^0.0.1"
},
"devDependencies": {
"adm-zip": "^0.5.12",
"mkdirp": "^3.0.1",
"vite": "^5.2.10",
"vitest": "^1.5.0",
"tmp-promise": "^3.0.3"
}
}