-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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": "@videoflow/renderer-server",
"version": "1.2.1",
"description": "Server-side video renderering for VideoFlow — renders JSON videos into MP4/WebM videos directly in the browser — Open Source Remotion alternative",
"keywords": ["videoflow", "programmatic video", "generate videos", "video generation", "mp4", "webm", "remotion", "video rendering", "server rendering", "video editor", "video API"],
"license": "Apache-2.0",
"homepage": "https://videoflow.dev/renderers",
"repository": {
"type": "git",
"url": "git+https://github.com/ybouane/VideoFlow.git",
"directory": "src/renderer-server"
},
"bugs": {
"url": "https://github.com/ybouane/VideoFlow/issues"
},
"type": "module",
"files": ["dist", "README.md", "renderer-page.html"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@videoflow/core": "^1.2.1",
"playwright": "^1.49.0",
"esbuild": "^0.24.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0"
}
}