forked from podman-desktop/extension-bootc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "bootc-extension",
"displayName": "Bootable Container",
"description": "Support for bootable OS containers (bootc) and generating disk images",
"version": "0.1.0-next",
"icon": "icon-dark.png",
"publisher": "redhat",
"license": "Apache-2.0",
"engines": {
"podman-desktop": "^1.6.0"
},
"main": "./dist/extension.js",
"contributes": {
"configuration": {},
"menus": {
"dashboard/image": [
{
"command": "bootc.image.build",
"title": "Build Disk Image",
"when": "ostree.bootable in imageLabelKeys"
}
],
"dashboard/container": [
{
"command": "bootc.vfkit",
"title": "Launch as VM"
}
]
},
"commands": [
{
"command": "bootc.image.build",
"title": "Build bootable disk image"
},
{
"command": "bootc.vfkit",
"title": "Launch VM"
}
],
"icons": {
"bootable-icon": {
"description": "bootable container icon",
"default": {
"fontPath": "bootable.woff2",
"fontCharacter": "\\0041"
}
}
},
"views": {
"icons/containersList": [
{
"when": "bootc.image.builder in containerLabelKeys",
"icon": "${bootable-icon}"
}
],
"icons/imagesList": [
{
"when": "ostree.bootable in imageLabelKeys",
"icon": "${bootable-icon}"
}
],
"badges/imagesList": [
{
"when": "ostree.bootable in imageLabelKeys",
"badge": {
"name": "bootc",
"style": "bg-green-600"
}
}
]
}
},
"scripts": {
"build": "vite build",
"test": "vitest run --coverage",
"test:watch": "vitest watch --coverage",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"lint:check": "eslint . --ext js,ts,tsx",
"lint:fix": "eslint . --fix --ext js,ts,tsx",
"watch": "vite build -w"
},
"dependencies": {},
"devDependencies": {
"@podman-desktop/api": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-sonarjs": "^0.23.0",
"prettier": "^3.1.1",
"typescript": "5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
}
}