-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.72 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
{
"name": "layers-explorer",
"displayName": "Image Layers Explorer",
"description": "Explore the files inside the different layers of a container image",
"version": "0.3.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"license": "Apache-2.0",
"engines": {
"podman-desktop": ">=1.12.0"
},
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Layers Explorer",
"properties": {
"layers-explorer.cacheSize": {
"type": "number",
"default": "100",
"description": "Size of cache in MB. Set to 0 to disable cache (requires restart of extension)",
"minimum": 0
}
}
}
},
"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": {
"tar": "^7.4.3"
},
"devDependencies": {
"@podman-desktop/api": "^1.14.1",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.1",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-sonarjs": "^2.0.4",
"prettier": "^3.2.4",
"typescript": "5.6.3",
"validator": "^13.11.0",
"vite": "^5.4.10",
"vitest": "^2.0.5"
}
}