mirror of
https://github.com/podman-desktop/podman-desktop
synced 2026-04-21 09:37:22 +00:00
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>
100 lines
2.9 KiB
JSON
100 lines
2.9 KiB
JSON
{
|
|
"name": "podman",
|
|
"displayName": "Podman",
|
|
"description": "Enable support for controlling Podman and Podman Machines",
|
|
"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": "podman.info",
|
|
"title": "podman: Specific info about podman"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Podman",
|
|
"properties": {
|
|
"podman.binary.path": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Custom path to Podman binary (Default is blank)"
|
|
},
|
|
"podman.machine.cpus": {
|
|
"type": "number",
|
|
"format": "cpu",
|
|
"minimum": 1,
|
|
"default": 1,
|
|
"scope": "ContainerConnection",
|
|
"description": "CPU(s)"
|
|
},
|
|
"podman.machine.memory": {
|
|
"type": "number",
|
|
"format": "memory",
|
|
"minimum": 1024,
|
|
"default": 2048,
|
|
"scope": "ContainerConnection",
|
|
"description": "Memory (MB)"
|
|
},
|
|
"podman.machine.diskSize": {
|
|
"type": "number",
|
|
"format": "diskSize",
|
|
"default": 100,
|
|
"scope": "ContainerConnection",
|
|
"description": "Disk size (GB)"
|
|
},
|
|
"podman.factory.machine.name": {
|
|
"type": "string",
|
|
"default": "podman-machine-default",
|
|
"scope": "ContainerProviderConnectionFactory",
|
|
"description": "Name"
|
|
},
|
|
"podman.factory.machine.cpus": {
|
|
"type": "number",
|
|
"format": "cpu",
|
|
"default": 1,
|
|
"scope": "ContainerProviderConnectionFactory",
|
|
"description": "CPU(s)"
|
|
},
|
|
"podman.factory.machine.memory": {
|
|
"type": "number",
|
|
"format": "memory",
|
|
"minimum": 1024,
|
|
"default": 2048,
|
|
"scope": "ContainerProviderConnectionFactory",
|
|
"description": "Memory (MB)"
|
|
},
|
|
"podman.factory.machine.diskSize": {
|
|
"type": "number",
|
|
"format": "diskSize",
|
|
"default": 100,
|
|
"scope": "ContainerProviderConnectionFactory",
|
|
"description": "Disk size (GB)"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rollup --bundleConfigAsCjs --config rollup.config.js --compact --environment BUILD:production && npx ts-node ./scripts/download.ts && node ./scripts/build.js",
|
|
"watch": "rollup --bundleConfigAsCjs --config rollup.config.js -w",
|
|
"test": "vitest run --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"@ltd/j-toml": "^1.36.0",
|
|
"@tmpwip/extension-api": "^0.0.1",
|
|
"compare-versions": "^5.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"7zip-min": "^1.4.3",
|
|
"hasha": "^5.2.2",
|
|
"mkdirp": "^1.0.4",
|
|
"octokit": "^2.0.10",
|
|
"ts-node": "^10.9.1",
|
|
"zip-local": "^0.3.5"
|
|
}
|
|
}
|