-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.2 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
{
"name": "quoti",
"version": "0.1.3",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"native:check": "node native/quoti-renderer/src/host.mjs --check",
"native:install": "powershell -ExecutionPolicy Bypass -File native/quoti-renderer/scripts/install-native-host.ps1",
"native:uninstall": "powershell -ExecutionPolicy Bypass -File native/quoti-renderer/scripts/uninstall-native-host.ps1",
"preview": "vite preview",
"release:package": "node scripts/release/create-release-package.mjs",
"release:sync-version": "node scripts/release/sync-version.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ffmpeg/core": "^0.12.10",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"hls.js": "^1.6.16",
"html-to-image": "^1.11.11",
"lucide-react": "^0.468.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simple-icons": "^16.23.0"
},
"devDependencies": {
"@types/chrome": "^0.0.326",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}