-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.72 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
{
"name": "yomori",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"desktop:dev:web": "DESKTOP_MODE=true next dev --port 3000",
"desktop:dev": "pnpm desktop:build:main && ELECTRON_DEV_SERVER_URL=http://localhost:3000 electron desktop",
"desktop:build:main": "tsc -p desktop/tsconfig.json",
"desktop:build:web": "DESKTOP_MODE=true next build --webpack",
"desktop:sync": "node scripts/sync-standalone-to-desktop.mjs",
"desktop:build": "pnpm desktop:build:web && pnpm desktop:sync && pnpm desktop:build:main && electron-builder --projectDir desktop",
"lint": "eslint"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.41",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.104.1",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"ai": "^6.0.158",
"cfb": "1.2.2",
"dompurify": "^3.4.1",
"edge-tts-universal": "^1.4.0",
"epubjs": "^0.3.93",
"gray-matter": "^4.0.3",
"jszip": "3.10.1",
"mammoth": "^1.12.0",
"marked": "^18.0.2",
"next": "16.2.3",
"next-intl": "^4.9.1",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-pdf": "^10.4.1",
"remark-gfm": "^4.0.1",
"xlsx": "0.18.5",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"electron": "39.2.7",
"electron-builder": "26.8.1",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}