-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
{
"name": "origami-ai",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "tsx watch --ignore 'node_modules/**' --ignore 'dist/**' --ignore 'public/**' --ignore '.git/**' server.ts",
"build": "vite build",
"lint": "eslint .",
"postinstall": "echo 'postinstall script skipped (scripts/ removed)'; exit 0",
"preview": "vite preview",
"stop": "npx kill-port 3000",
"kill-all": "echo 'kill-all script removed; use platform tools (taskkill/killall) if necessary'"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@huggingface/transformers": "^3.8.1",
"@mlc-ai/web-llm": "^0.2.80",
"@tailwindcss/postcss": "^4.2.2",
"clsx": "^2.1.1",
"compression": "^1.8.1",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"express": "^5.2.1",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"jszip": "^3.10.1",
"kokoro-js": "^1.2.1",
"lucide-react": "^0.562.0",
"ogl": "^1.0.11",
"pdfjs-dist": "^5.4.449",
"pidusage": "^3.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"tailwind-merge": "^3.4.0",
"tesseract.js": "^7.0.0",
"tree-kill": "^1.2.2",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/hpp": "^0.2.7",
"@types/node": "^24.10.4",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.5.0",
"eslint": "^9.18.0",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^7.2.4"
},
"overrides": {
"ajv": "^8.18.0"
}
}