forked from openvideodev/react-video-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.16 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.16 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
89
90
91
92
93
94
95
96
97
98
{
"name": "openvideo-editor",
"version": "0.1.1",
"private": true,
"description": "Open-source AI Video Editor with client-side rendering (WebCodecs) and AI Copilot.",
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start -p 5000",
"offline:pack": "powershell -ExecutionPolicy Bypass -File .\\scripts\\Package-OfflineBundle.ps1",
"offline:deploy": "powershell -ExecutionPolicy Bypass -File .\\scripts\\Deploy-OfflineBundle.ps1",
"offline:verify": "powershell -ExecutionPolicy Bypass -File .\\scripts\\Verify-OfflineBundle.ps1",
"postinstall": "prisma generate",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/s3-request-presigner": "^3.946.0",
"@deepgram/sdk": "^4.11.2",
"@genkit-ai/ai": "^1.28.0",
"@genkit-ai/google-genai": "^1.28.0",
"@genkit-ai/next": "^1.28.0",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^0.5.2",
"@react-email/render": "^1.3.1",
"@tabler/icons-react": "^3.36.0",
"better-auth": "^1.5.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"color": "^5.0.3",
"fabric": "^6.9.0",
"genkit": "^1.28.0",
"hotkeys-js": "^4.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.555.0",
"mediabunny": "^1.26.0",
"mime": "^4.1.0",
"motion": "^12.23.26",
"next": "16.0.7",
"next-themes": "^0.4.6",
"openvideo": "^0.2.11",
"opfs-tools": "^0.7.2",
"pg": "^8.20.0",
"pixi.js": "^8.14.3",
"radix-ui": "^1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^3.0.6",
"remark-gfm": "^4.0.1",
"resend": "^6.1.0",
"shiki": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tinyld": "^1.3.4",
"zod": "^4.1.13",
"zustand": "^5.0.4"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/color": "^4.2.0",
"@types/lodash": "^4.17.21",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"oxfmt": "^0.36.0",
"prisma": "^7.4.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxfmt"
]
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}