podman-desktop/extensions/podman-docker-context/package.json

31 lines
807 B
JSON
Raw Normal View History

{
"name": "podman-docker-context",
"displayName": "Podman Docker Context",
"description": "Synchronize Docker Contexts with Podman",
"version": "1.24.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.0.1"
},
"main": "./dist/extension.js",
"source": "./src/extension.ts",
"scripts": {
"build": "vite build && node ./scripts/build.js",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"watch": "vite build --watch"
},
"dependencies": {
"@podman-desktop/api": "workspace:*",
"@podman-desktop/docker-extension-api": "workspace:*"
},
"devDependencies": {
"adm-zip": "^0.5.16",
"mkdirp": "^3.0.1",
"vite": "^7.2.6",
"vitest": "^4.0.10"
}
}