forked from podman-desktop/extension-kreate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.43 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": "kreate-monorepo",
"displayName": "Kreate",
"description": "Provide templates and documentation to create Kubernetes resources",
"repository": "https://github.com/podman-desktop/extension-kreate",
"homepage": "https://github.com/podman-desktop/extension-kreate#readme",
"version": "0.4.0-next",
"icon": "icon.png",
"publisher": "podman-desktop",
"private": true,
"engines": {
"node": ">=24.0.0",
"npm": ">=10.2.3"
},
"scripts": {
"build": "concurrently \"cd packages/frontend && npm run build\" \"cd packages/backend && npm run build\"",
"watch": "concurrently \"cd packages/frontend && npm run watch\" \"cd packages/backend && npm 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:backend": "vitest run -r packages/backend --passWithNoTests --coverage",
"test:frontend": "vitest -c packages/frontend/vite.config.js run packages/frontend --passWithNoTests --coverage",
"test:shared": "vitest run -r packages/shared --passWithNoTests --coverage",
"test:unit": "npm run test:backend && npm run test:shared && npm run test:frontend",
"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.62.0",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^4",
"concurrently": "^10.0.3",
"eslint": "^8.56.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.5",
"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-sonarjs": "^4.1.0",
"openapi-types": "^12.1.3",
"prettier": "^3.9.1",
"prettier-plugin-svelte": "^4.1.1",
"typescript": "5.9.3",
"vite": "^8.1.0",
"vitest": "^4"
},
"workspaces": {
"packages": [
"packages/*",
"tests/*"
]
},
"dependencies": {
"@kubernetes/client-node": "1.4.0",
"@scalar/openapi-parser": "^0.28.8",
"js-yaml": "^4.3.0",
"zod": "^4.4.3"
},
"pnpm": {
"overrides": {
"minimatch>@isaacs/brace-expansion": "^5.0.1",
"test-exclude>glob": "^10.5.0",
"concurrently>lodash": ">=4.18.0",
"minimatch>brace-expansion": "^2.0.2",
"minimatch@^3.0.0": "^3.1.4",
"minimatch@~9.0.0": "^9.0.7",
"flatted": ">=3.4.0",
"picomatch@>=4.0.0": ">=4.0.4",
"ajv@<6.14.0": "^6.14.0",
"esbuild@>=0.17.0 <0.28.1": ">=0.28.1",
"ws@>=8.0.0 <8.21.0": ">=8.21.0",
"form-data@>=4.0.0 <4.0.6": ">=4.0.6",
"undici@>=7.23.0 <7.28.0": "^7.28.0"
},
"ignoredBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"svelte-preprocess",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}