-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 975 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 975 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
35
36
37
{
"name": "askclaw-im",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"test": "vitest",
"test:e2e": "playwright test",
"test:all": "vitest run && playwright test"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.12.0",
"jsdom": "^25.0.0",
"svelte": "^5.53.7",
"svelte-check": "^4.4.5",
"typescript": "~5.9.3",
"vite": "^8.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"@types/dompurify": "^3.0.5",
"dompurify": "^3.3.3",
"highlight.js": "^11.11.1",
"marked": "^17.0.4",
"nats": "^2.29.3",
"ws": "^8.18.3"
}
}