-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "redactr",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "npm run wasm:build && vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"wasm:build": "cd wasm && wasm-pack build --target web --out-dir ../src/lib/wasm/pkg",
"wasm:dev": "cd wasm && wasm-pack build --target web --dev --out-dir ../src/lib/wasm/pkg",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@tsconfig/svelte": "^5.0.6",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.16",
"happy-dom": "^20.0.11",
"jsdom": "^27.4.0",
"svelte": "^5.43.8",
"svelte-check": "^4.3.4",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-wasm": "^3.5.0",
"vitest": "^4.0.16"
},
"dependencies": {
"@mediapipe/tasks-vision": "0.10.22-rc.20250304",
"@xenova/transformers": "^2.17.2",
"tesseract.js": "^7.0.0"
}
}