-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.12 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.12 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
{
"name": "wavespeed-android",
"version": "0.8.1",
"description": "WaveSpeed Android Application",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:check": "tsc --noEmit && vite build",
"preview": "vite preview",
"cap:sync": "cap sync",
"cap:open:android": "cap open android",
"android": "npm run build && cap sync android && cap open android",
"android:build": "npm run build && cap sync android",
"android:build:debug": "npm run android:build && cd android && gradlew assembleDebug",
"android:build:release": "npm run android:build && cd android && gradlew assembleRelease",
"android:build:bundle": "npm run android:build && cd android && gradlew bundleRelease"
},
"dependencies": {
"@capacitor/android": "^6.2.0",
"@capacitor/app": "^6.0.1",
"@capacitor/browser": "^6.0.3",
"@capacitor/camera": "^6.0.2",
"@capacitor/core": "^6.2.0",
"@capacitor/filesystem": "^6.0.2",
"@capacitor/keyboard": "^6.0.2",
"@capacitor/preferences": "^6.0.2",
"@capacitor/share": "^6.0.2",
"@capacitor/splash-screen": "^6.0.2",
"@capacitor/status-bar": "^6.0.1",
"@huggingface/transformers": "3.0.2",
"@imgly/background-removal": "^1.7.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-virtual": "^3.13.12",
"@tensorflow/tfjs-backend-wasm": "^4.11.0",
"@tensorflow/tfjs-core": "^4.11.0",
"@upscalerjs/default-model": "^1.0.0-beta.17",
"@upscalerjs/esrgan-medium": "^1.0.0-beta.13",
"@upscalerjs/esrgan-slim": "^1.0.0-beta.12",
"@upscalerjs/esrgan-thick": "^1.0.0-beta.16",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"i18next": "^25.7.1",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.454.0",
"mp4-muxer": "^5.2.2",
"onnxruntime-web": "1.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.9",
"react-i18next": "^16.3.5",
"react-router-dom": "^6.28.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"upscaler": "^1.0.0-beta.19",
"webm-muxer": "^5.1.4",
"zustand": "^5.0.1"
},
"devDependencies": {
"@capacitor/cli": "^6.2.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-static-copy": "^3.1.4"
}
}