-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.51 KB
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
{
"name": "hummingbird",
"repository": "https://github.com/redhat-developer/podman-desktop-hummingbird-ext",
"homepage": "https://github.com/redhat-developer/podman-desktop-hummingbird-ext#readme",
"displayName": "Hummingbird",
"description": "Hummingbird extension",
"version": "0.1.0-next",
"icon": "icon.png",
"publisher": "redhat",
"private": true,
"engines": {
"node": ">=24.0.0",
"npm": ">=10.2.3"
},
"scripts": {
"build:backend": "cd packages/backend && npm run build",
"build:frontend": "cd packages/frontend && npm run build",
"build:shared": "cd packages/shared && npm run build",
"build": "npm run build:shared && concurrently \"npm run build:frontend\" \"npm run build:backend\"",
"watch": "concurrently \"cd packages/shared && npm run watch\" \"cd packages/frontend && npm run watch\" \"cd packages/backend && npm run watch\"",
"format:check": "prettier --check \"packages/**/*.{ts,js,json,svelte}\"",
"format:fix": "prettier --write \"packages/**/*.{ts,js,json,svelte}\"",
"lint:check": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"test:backend": "vitest run --project hummingbird",
"test:frontend": "pnpm run --dir ./packages/frontend test",
"test:shared": "vitest run --project @podman-desktop/extension-hummingbird-core-api",
"test:unit": "concurrently \"pnpm run test:shared\" \"pnpm run test:frontend\" \"pnpm run test:backend\"",
"typecheck:shared": "tsc --noEmit --project packages/shared",
"typecheck:frontend": "cd packages/frontend && pnpm check",
"typecheck:backend": "tsc --noEmit --project packages/backend",
"typecheck": "npm run typecheck:shared && npm run typecheck:frontend && npm run typecheck:backend"
},
"resolutions": {
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/eslint-plugin": "^1.6.19",
"autoprefixer": "^10.5.0",
"concurrently": "^10.0.1",
"eslint": "^9.39.2",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^9.39.4",
"@eslint/eslintrc": "^3.3.5",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-svelte": "^3.19.0",
"eslint-plugin-unicorn": "^64.0.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.0.1",
"svelte-eslint-parser": "^1.7.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"globals": "^17.6.0",
"@podman-desktop/api": "^1.27.2"
},
"workspaces": {
"packages": [
"packages/*",
"tests/*"
]
},
"pnpm": {
"overrides": {
"minimatch@^3": "^3.1.5",
"minimatch@^9": "^9.0.9",
"minimatch@^10": "^10.2.4",
"lodash": "^4.18.1",
"rollup": "^4.59.0",
"flatted": "^3.4.2",
"ajv@^6": "^6.14.0",
"ajv@>=7": ">=8.18.0",
"brace-expansion@^1": "^1.1.13",
"brace-expansion@^5": ">=5.0.6",
"cookie": "0.7.0",
"postcss": "^8.5.12"
}
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}