-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "@clawnify/open-video",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler d1 execute open-video-db --local --file=src/server/schema.sql && concurrently -n studio,api -c cyan,green \"npx remotion studio --port 5173\" \"wrangler dev --port 8787\"",
"build": "npx remotion bundle --out-dir dist",
"render": "npx remotion render",
"dev:api": "wrangler dev --port 8787",
"dev:studio": "npx remotion studio"
},
"dependencies": {
"@clawnify/db": "^0.2.0",
"@cloudflare/puppeteer": "^1.1.0",
"@hono/zod-openapi": "^0.18.0",
"@remotion/cli": "4.0.448",
"@remotion/player": "4.0.448",
"@remotion/zod-types": "4.0.448",
"hono": "^4.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"remotion": "4.0.448",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/react": "^19.0.0",
"concurrently": "^9.0.0",
"typescript": "^5.7.0",
"wrangler": "^4.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
]
}
}