-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.09 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.09 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
{
"name": "kore",
"version": "0.1.1",
"description": "Kubernetes Orchestration and Resource Explorer - A lightweight, open-source Kubernetes IDE",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"tauri": "tauri",
"screenshots": "playwright test --config playwright.screenshots.config.ts"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.14",
"@lezer/highlight": "^1.2.3",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2.4.5",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-updater": "~2.9.0",
"@tauri-apps/plugin-websocket": "~2.4.2",
"@types/js-yaml": "^4.0.9",
"chart.js": "^4.5.1",
"codemirror": "^6.0.2",
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.1",
"lucide-svelte": "^0.563.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/cli": "^2",
"@testing-library/dom": "^10.4.1",
"@testing-library/svelte": "^5.3.1",
"@types/node": "^25.3.2",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^27.4.0",
"playwright": "^1.58.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}