-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ocr-arcade",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "Turn scanned images and PDFs into editable PowerPoint (PPTX) slides directly in your browser. Features local OCR, visual canvas editing, and privacy-first processing.",
"author": "WinterDrive",
"license": "AGPL-3.0-or-later AND LicenseRef-Commercial",
"homepage": "https://github.com/winterdrive/OCR-Arcade",
"funding": {
"type": "other",
"url": "https://github.com/winterdrive/OCR-Arcade/blob/main/COMMERCIAL-LICENSE.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winterdrive/OCR-Arcade.git"
},
"keywords": [
"ocr",
"pdf-to-pptx",
"tesseract",
"react",
"canvas",
"fabricjs",
"local-first",
"privacy"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"qa:local": "node scripts/qa-local.mjs",
"og:build": "node scripts/generate-og-from-html.mjs",
"og:calibrate": "node scripts/calibrate-og-panel.mjs",
"og:verify-panel": "node scripts/verify-og-panel.mjs",
"og:compare": "node scripts/compare-og.mjs",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "npx playwright test"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@types/jszip": "^3.4.0",
"canvas": "^3.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fabric": "^5.3.0",
"framer-motion": "^12.26.2",
"i18next": "^25.8.5",
"jszip": "^3.10.1",
"lucide-react": "^0.562.0",
"onnxruntime-node": "^1.24.3",
"onnxruntime-web": "^1.24.3",
"pdfjs-dist": "^3.11.174",
"pptxgenjs": "^3.12.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"react-router-dom": "^7.13.0",
"tailwind-merge": "^3.4.0",
"tesseract.js": "^7.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@tsconfig/vite-react": "^7.0.2",
"@types/fabric": "^5.3.11",
"@types/node": "^24.10.9",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"fast-check": "^4.5.3",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.18"
}
}