-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1010 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1010 Bytes
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
{
"name": "xtcjs",
"version": "1.0.0",
"description": "Browser-based CBZ to XTC converter for XTEink X4",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:static": "VITE_API_URL=https://api.xtcjs.app/api vite build",
"preview": "vite preview",
"serve": "bun run server/index.ts",
"serve:api": "bun run server/api-only.ts"
},
"dependencies": {
"@hono/vite-dev-server": "^0.24.1",
"@tanstack/react-router": "^1.158.1",
"axios": "^1.13.4",
"hono": "^4.11.7",
"jszip": "^3.10.1",
"node-unrar-js": "^2.0.2",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.624",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@tanstack/router-plugin": "^1.158.1",
"@types/bun": "latest",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0"
}
}