podman-desktop/extensions/lima/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

77 lines
2.1 KiB
JSON

{
"name": "lima",
"displayName": "Lima",
"description": "Integration for Lima: Linux Machines (typically macOS)",
"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": {
"configuration": {
"title": "Lima",
"properties": {
"lima.binary.path": {
"type": "string",
"format": "file",
"default": "",
"description": "Custom path to limactl binary (Default is blank)"
},
"lima.home": {
"type": "string",
"default": "",
"markdownDescription": "Lima home directory. See [documentation](https://lima-vm.io/docs/dev/internals/#lima-home-directory-lima_home)"
},
"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": "workspace:*"
},
"devDependencies": {
"adm-zip": "^0.5.16",
"mkdirp": "^3.0.1",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"tmp-promise": "^3.0.3"
}
}