-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.67 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.67 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
{
"name": "kubernetes-contexts-monorepo",
"displayName": "Mono repository for Kubernetes Contexts extension for Podman Desktop",
"description": "Root repository",
"version": "0.3.0-next",
"publisher": "podman-desktop",
"private": true,
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"build": "pnpm run build:rpc && pnpm run build:channels && concurrently \"cd packages/webview && pnpm run build\" \"cd packages/extension && pnpm run build\"",
"build:rpc": "cd packages/rpc && pnpm run build",
"build:channels": "cd packages/channels && 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:channels": "vitest run --project channels --passWithNoTests",
"test": "pnpm run test:extension && pnpm run test:webview && pnpm run test:channels",
"typecheck:rpc": "tsc --noEmit --project packages/rpc",
"typecheck:channels": "tsc --noEmit --project packages/channels",
"typecheck:webview": "cd packages/webview && pnpm check",
"typecheck:extension": "tsc --noEmit --project packages/extension",
"typecheck": "pnpm run typecheck:rpc && pnpm run typecheck:channels && pnpm run typecheck:webview && pnpm run typecheck:extension"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@eslint/eslintrc": "^3.3.5",
"@tsconfig/strictest": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/eslint-plugin": "^1.6.17",
"autoprefixer": "^10.5.0",
"concurrently": "^9.1.2",
"eslint": "^10.3.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-better-tailwindcss": "^4.5.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-file-progress": "^4.0.0",
"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.17.1",
"eslint-plugin-unicorn": "^64.0.0",
"node-gyp": "^12.3.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.2",
"svelte": "5.55.7",
"svelte-check": "^4.4.8",
"svelte-eslint-parser": "^1.6.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vitest": "^4"
},
"dependencies": {
"isomorphic-ws": "^5.0.0"
},
"workspaces": [
"packages/*"
],
"pnpm": {
"overrides": {
"minimatch@<3.1.3": ">=3.1.3 <4",
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7 <10",
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"lodash@>=4.0.0 <=4.17.23": ">=4.18.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"brace-expansion@<1.1.13": ">=1.1.13 <2",
"postcss@<8.5.13": ">=8.5.13",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"ip-address@<=10.1.0": ">=10.1.1"
}
},
"resolutions": {
"@testing-library/dom>@babel/runtime": "^7.26.10"
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}