forked from crc-org/crc-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"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",
"desk:build": "node ./scripts/run.mjs build",
"desk:prepare": "node ./scripts/run.mjs prepare",
"desk:run": "node ./scripts/run.mjs run",
"desk:clean": "node ./scripts/run.mjs clean"
},
"dependencies": {
"got": "^12.5.3"
},
"devDependencies": {
"7zip-min": "^1.4.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^18.14.6",
"mkdirp": "^2.1.3",
"rollup": "^3.18.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"zip-local": "^0.3.5"
}
}