-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.31 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
{
"name": "lightspeed-monorepo",
"repository": "https://github.com/redhat-developer/podman-desktop-redhat-lightspeed-ext",
"homepage": "https://github.com/redhat-developer/podman-desktop-redhat-lightspeed-ext#readme",
"displayName": "Mono repository for RHEL lightspeed extension for Podman Desktop",
"description": "Root repository",
"version": "0.3.0-next",
"publisher": "redhat",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"build": "concurrently \"cd packages/webview && pnpm run build\" \"cd packages/extension && pnpm run build\"",
"watch": "concurrently \"cd packages/webview && pnpm run watch\" \"cd packages/extension && pnpm run watch\"",
"format:check": "prettier --check \"**/src/**/*.{ts,svelte}\"",
"format:fix": "prettier --write \"**/src/**/*.{ts,svelte}\"",
"lint:check": "eslint . --ext js,ts,tsx",
"lint:fix": "eslint . --fix --ext js,ts,tsx",
"svelte:check": "svelte-check",
"test:extension": "vitest run --project extension",
"test:webview": "vitest run --project webview --passWithNoTests",
"test:common": "vitest run --project common --passWithNoTests",
"test": "pnpm run test:extension && pnpm run test:webview && pnpm run test:common",
"typecheck:common": "tsc --noEmit --project packages/common",
"typecheck:webview": "tsc --noEmit --project packages/webview",
"typecheck:extension": "tsc --noEmit --project packages/extension",
"typecheck": "pnpm run typecheck:common && pnpm run typecheck:webview && pnpm run typecheck:extension"
},
"devDependencies": {
"@eslint/compat": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.17",
"autoprefixer": "^10.5.0",
"concurrently": "^10.0.0",
"eslint": "^9.39.2",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-progress": "^3.0.2",
"eslint-plugin-import": "^2.31.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.18.0",
"eslint-plugin-unicorn": "^64.0.0",
"node-gyp": "^12.0.0",
"prettier": "^3.8.2",
"prettier-plugin-svelte": "^4.0.1",
"svelte": "5.56.2",
"svelte-check": "^4.4.7",
"svelte-eslint-parser": "^1.8.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.30.1",
"vite": "^8.0.14",
"vitest": "^3.1.2"
},
"workspaces": [
"packages/*",
"tests/*"
],
"dependencies": {},
"pnpm": {
"overrides": {
"minimatch@<3.1.3": "^3.1.3",
"minimatch@>=9.0.0 <9.0.6": "^9.0.6",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"flatted@<3.4.0": ">=3.4.0",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"brace-expansion@<1.1.13": ">=1.1.13",
"brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6",
"postcss@<8.5.10": ">=8.5.10"
}
},
"resolutions": {
"@testing-library/dom>@babel/runtime": "^7.26.10"
},
"packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
}