-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 808 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 808 Bytes
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
{
"name": "agent-session-viewer-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^20.19 || ^22.12 || >=24"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"e2e": "playwright test"
},
"dependencies": {
"@tanstack/virtual-core": "3.13.23",
"dompurify": "3.3.3",
"marked": "17.0.5"
},
"devDependencies": {
"@playwright/test": "1.58.2",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@tsconfig/svelte": "5.0.8",
"@types/dompurify": "3.2.0",
"jsdom": "29.0.1",
"svelte": "5.55.0",
"svelte-check": "4.4.5",
"typescript": "5.9.3",
"vite": "8.0.2",
"vitest": "4.1.1"
}
}