-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.12 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
{
"name": "masterselects",
"private": true,
"version": "1.5.4",
"type": "module",
"scripts": {
"dev": "vite",
"dev:cf": "wrangler pages dev . --port 8788 --persist-to .wrangler/state",
"dev:api": "npm run cf:migrate:local && npm run dev:cf",
"dev:full": "node scripts/dev-full.mjs",
"dev:changelog": "vite --mode changelog",
"build": "tsc -b && vite build",
"build:deploy": "vite build",
"cf:migrate:local": "wrangler d1 migrations apply DB --local",
"cf:migrate:remote": "wrangler d1 migrations apply DB --remote",
"cf:types": "wrangler types",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:security": "vitest run tests/security/ tests/unit/aiToolPolicy.test.ts tests/unit/logRedaction.test.ts tests/unit/redact.test.ts --reporter=verbose"
},
"dependencies": {
"@ffmpeg/core": "^0.12.6",
"@ffmpeg/ffmpeg": "^0.12.6",
"@ffmpeg/util": "^0.12.2",
"@huggingface/transformers": "^3.8.1",
"@lottiefiles/dotlottie-web": "^0.71.0",
"@types/three": "^0.183.1",
"@webgpu/types": "^0.1.66",
"mediabunny": "^1.39.2",
"mp4box": "^2.3.0",
"onnxruntime-web": "^1.24.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"soundtouch-ts": "^1.1.1",
"three": "^0.183.2",
"zustand": "^5.0.9"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^28.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.18",
"wrangler": "^4.76.0"
}
}