-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 913 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 913 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
{
"name": "kody-video",
"private": true,
"version": "0.1.0",
"license": "FSL-1.1-ALv2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:smoke": "npm run build && node scripts/manual-smoke.mjs",
"lint": "tsc -b --pretty false"
},
"dependencies": {
"@sentry/browser": "^10.69.0",
"client-zip": "^2.5.0",
"idb": "^8.0.3",
"mediabunny": "^1.52.1",
"remix": "3.0.0-rc.2",
"uqr": "^0.1.3"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@sentry/vite-plugin": "^5.4.0",
"@types/node": "^26.1.1",
"@vitest/browser-playwright": "^4.1.10",
"playwright": "^1.62.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vite-plugin-pwa": "^1.0.1",
"vitest": "^4.1.10"
}
}