-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.88 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
{
"name": "openreels",
"version": "0.4.0",
"type": "module",
"bin": {
"openreels": "./dist/index.js"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "tsx --env-file=.env src/index.ts",
"dev": "tsx --env-file=.env src/index.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@remotion/bundler": "^4.0.441",
"@remotion/cli": "^4.0.441",
"@remotion/player": "^4.0.441",
"@remotion/renderer": "^4.0.441",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remotion": "^4.0.441",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"onnxruntime-node",
"sharp"
]
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.66",
"@ai-sdk/google": "^3.0.58",
"@ai-sdk/openai": "^3.0.50",
"@ai-sdk/openai-compatible": "^2.0.41",
"@anthropic-ai/sdk": "^0.80.0",
"@fal-ai/client": "^1.9.5",
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.0.0",
"@google/genai": "^1.47.0",
"@huggingface/transformers": "^4.0.1",
"@mastra/core": "^1.21.0",
"@openrouter/ai-sdk-provider": "^2.5.1",
"@remotion/google-fonts": "4.0.441",
"@remotion/transitions": "4.0.441",
"@tavily/ai-sdk": "^0.4.1",
"ai": "^6.0.145",
"bullmq": "^5.72.0",
"commander": "^14.0.3",
"fastify": "^5.8.4",
"ioredis": "^5.10.1",
"kokoro-js": "^1.2.1",
"openai": "^6.33.0",
"p-limit": "^7.3.0",
"wavefile": "^11.0.0",
"zod": "^4.3.6"
}
}