podman-desktop/extensions/crc/package.json
Florent Benoit 4eaed9e0b7 chore: upgrade to vite v4 and rollup v3
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>
2022-12-22 12:07:36 +01:00

35 lines
924 B
JSON

{
"name": "crc",
"displayName": "CRC",
"description": "Allows the ability to start and stop CRC and use Podman Desktop to interact with it",
"version": "0.0.1",
"icon": "icon.png",
"publisher": "benoitf",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^0.0.1"
},
"main": "./dist/extension.js",
"source": "./src/extension.ts",
"contributes": {
"commands": [
{
"command": "crc.info",
"title": "crc: Specific info about crc"
}
]
},
"scripts": {
"build": "rollup --bundleConfigAsCjs --config rollup.config.js --compact --environment BUILD:production && node ./scripts/build.js",
"watch": "rollup --bundleConfigAsCjs --config rollup.config.js -w"
},
"dependencies": {
"@tmpwip/extension-api": "^0.0.1",
"got": "^12.5.3"
},
"devDependencies": {
"7zip-min": "^1.4.3",
"mkdirp": "^1.0.4",
"zip-local": "^0.3.5"
}
}