-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.3 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.3 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": "videoflow",
"private": true,
"version": "1.2.1",
"description": "Create Videos Programmatically in Javascript — Turn JSON code into programmatic videos — in the browser or via API — Open Source Remotion alternative",
"keywords": ["videoflow", "programmatic video", "generate videos", "video generation", "mp4", "webm", "remotion", "video rendering", "server rendering", "browser rendering", "video editor", "video API"],
"license": "Apache-2.0",
"homepage": "https://videoflow.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/ybouane/VideoFlow.git"
},
"bugs": {
"url": "https://github.com/ybouane/VideoFlow/issues"
},
"type": "module",
"workspaces": [
"src/core",
"src/renderer-browser",
"src/renderer-server",
"src/renderer-dom"
],
"scripts": {
"postinstall": "patch-package",
"publish": "npm run build && npm publish --workspaces --access public",
"build": "npm run build --workspaces",
"build:core": "npm run build -w src/core",
"build:browser": "npm run build -w src/renderer-browser",
"build:server": "npm run build -w src/renderer-server",
"build:dom": "npm run build -w src/renderer-dom"
},
"devDependencies": {
"esbuild": "^0.24.0",
"patch-package": "^8.0.1",
"typescript": "^5.7.0"
}
}